List of usage examples for com.liferay.portal.kernel.util PropsKeys MESSAGE_BOARDS_EMAIL_HTML_FORMAT
String MESSAGE_BOARDS_EMAIL_HTML_FORMAT
To view the source code for com.liferay.portal.kernel.util PropsKeys MESSAGE_BOARDS_EMAIL_HTML_FORMAT.
Click Source Link
From source file:com.cd.learning.hook.MBUtil.java
License:Open Source License
public static boolean getEmailHtmlFormat(PortletPreferences preferences) { String emailHtmlFormat = preferences.getValue("emailHtmlFormat", StringPool.BLANK); if (Validator.isNotNull(emailHtmlFormat)) { return GetterUtil.getBoolean(emailHtmlFormat); } else {//from w w w .j a va 2 s.co m return GetterUtil.getBoolean(PropsUtil.get(PropsKeys.MESSAGE_BOARDS_EMAIL_HTML_FORMAT)); } }