Example usage for com.liferay.portal.kernel.util PropsKeys MESSAGE_BOARDS_EMAIL_HTML_FORMAT

List of usage examples for com.liferay.portal.kernel.util PropsKeys MESSAGE_BOARDS_EMAIL_HTML_FORMAT

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util PropsKeys MESSAGE_BOARDS_EMAIL_HTML_FORMAT.

Prototype

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

Usage

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));
    }
}