use of com.haulmont.cuba.gui.presentations.Presentations in project cuba by cuba-platform.
the class PresentationActionsBuilder method isGlobalPresentation.
protected boolean isGlobalPresentation() {
Presentations presentations = table.getPresentations();
Presentation presentation = presentations.getCurrent();
return presentation != null && (!presentations.isGlobal(presentation) || userSessionSource.getUserSession().isSpecificPermitted("cuba.gui.presentations.global"));
}
Aggregations