Example usage for com.liferay.portal.util PropsValues CALENDAR_EVENT_COMMENTS_ENABLED

List of usage examples for com.liferay.portal.util PropsValues CALENDAR_EVENT_COMMENTS_ENABLED

Introduction

In this page you can find the example usage for com.liferay.portal.util PropsValues CALENDAR_EVENT_COMMENTS_ENABLED.

Prototype

boolean CALENDAR_EVENT_COMMENTS_ENABLED

To view the source code for com.liferay.portal.util PropsValues CALENDAR_EVENT_COMMENTS_ENABLED.

Click Source Link

Usage

From source file:com.liferay.portlet.calendar.asset.CalEventAssetRenderer.java

License:Open Source License

@Override
public String getDiscussionPath() {
    if (PropsValues.CALENDAR_EVENT_COMMENTS_ENABLED) {
        return "edit_event_discussion";
    } else {//from  ww  w  .  j  a  v a  2  s .  c om
        return null;
    }
}