diff options
Diffstat (limited to 'manager/library/actions/ActionMail.php')
-rw-r--r-- | manager/library/actions/ActionMail.php | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/manager/library/actions/ActionMail.php b/manager/library/actions/ActionMail.php index fc4f172..65f55d6 100644 --- a/manager/library/actions/ActionMail.php +++ b/manager/library/actions/ActionMail.php @@ -3,51 +3,51 @@ require_once (FWACTIONS_PATH . '/FWAction.php'); class Mail extends FWAction { - /** - * get a list of required permissions that are needed to access this action - * @return array - */ - public static function getRequiredPermissions() { - return array(); - } + /** + * get a list of required permissions that are needed to access this action + * @return array + */ + public static function getRequiredPermissions() { + return array(); + } - /** - * get a role that is required for accessing that action - * @return string - */ - public static function getRequiredRole() { - return 'User'; - } + /** + * get a role that is required for accessing that action + * @return string + */ + public static function getRequiredRole() { + return 'User'; + } - /** - * sort order for top navigation - * @return integer - */ - public static function getTopNavPrio() { - return 100; - } + /** + * sort order for top navigation + * @return integer + */ + public static function getTopNavPrio() { + return 100; + } - /** - * controller to invoke - * @return string - */ - public static function getController() { - return 'mail'; - } + /** + * controller to invoke + * @return string + */ + public static function getController() { + return 'mail'; + } - /** - * action to invoke - * @return string - */ - public static function getAction() { - return 'index'; - } + /** + * action to invoke + * @return string + */ + public static function getAction() { + return 'index'; + } - /** - * get text for menu, caller is responsible for translating - * @return string - */ - public static function getMenuText() { - return 'Mail'; - } + /** + * get text for menu, caller is responsible for translating + * @return string + */ + public static function getMenuText() { + return 'Mail'; + } } |