diff options
Diffstat (limited to 'manager/library/actions/ActionLogin.php')
-rw-r--r-- | manager/library/actions/ActionLogin.php | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/manager/library/actions/ActionLogin.php b/manager/library/actions/ActionLogin.php index d363ee8..509f83c 100644 --- a/manager/library/actions/ActionLogin.php +++ b/manager/library/actions/ActionLogin.php @@ -3,51 +3,51 @@ require_once (FWACTIONS_PATH . '/FWAction.php'); class Login 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 1000; - } + /** + * sort order for top navigation + * @return integer + */ + public static function getTopNavPrio() { + return 1000; + } - /** - * controller to invoke - * @return string - */ - public static function getController() { - return 'login'; - } + /** + * controller to invoke + * @return string + */ + public static function getController() { + return 'login'; + } - /** - * 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 'Login'; - } + /** + * get text for menu, caller is responsible for translating + * @return string + */ + public static function getMenuText() { + return 'Login'; + } } |