Interface IViewMenuEntry
- All Superinterfaces:
IMenuEntry
Common interface for view menu entries.
IMPORTANT: This interface is intended to be used by the formcycle core. Plugin developers should not implement this interface. This interface may be subject to change pretty soon.
- Since:
- 8.5.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptiongetView()Returns the view associated with this menu entry.Returns the ID of the view associated with this menu entry.booleanReturns if users need to have a user profile to access this menu entry.booleanReturns whether the target of this menu entry should be opened in a new tab.Methods inherited from interface IMenuEntry
getIconStyleClass, getLabel, isAvailable, isEnabled
-
Method Details
-
getViewId
String getViewId()Returns the ID of the view associated with this menu entry.- Returns:
- the ID of the view associated with this menu entry
-
getView
IView getView()Returns the view associated with this menu entry.- Returns:
- the view associated with this menu entry
-
isOpenTargetInNewTab
boolean isOpenTargetInNewTab()Returns whether the target of this menu entry should be opened in a new tab.- Returns:
trueif the target should be opened in a new tab,falseotherwise
-
isNeedsUserProfile
boolean isNeedsUserProfile()Returns if users need to have a user profile to access this menu entry.- Returns:
trueif users need to have a user profile to access this menu entry,falseotherwise
-