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

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

Introduction

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

Prototype

String MESSAGE_BOARDS_ANONYMOUS_POSTING_ENABLED

To view the source code for com.liferay.portal.kernel.util PropsKeys MESSAGE_BOARDS_ANONYMOUS_POSTING_ENABLED.

Click Source Link

Usage

From source file:com.cd.learning.hook.MBUtil.java

License:Open Source License

public static boolean isAllowAnonymousPosting(PortletPreferences preferences) {

    return GetterUtil.getBoolean(preferences.getValue("allowAnonymousPosting", null),
            GetterUtil.getBoolean(PropsUtil.get(PropsKeys.MESSAGE_BOARDS_ANONYMOUS_POSTING_ENABLED)));
}