diff options
author | INOPIAE <inopiae@cacert.org> | 2015-08-09 19:12:51 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2015-08-09 22:23:21 +0200 |
commit | 4edd7b57c0057f9cfab0874a198256b87bd018b7 (patch) | |
tree | 2a623eade7fea29bda28e15692991821448c8fe1 /manager/library/actions/ActionLogin.php | |
parent | ce38587c8459587d7a03002ebcb4427ed95fb85c (diff) | |
download | cacert-mgr-4edd7b57c0057f9cfab0874a198256b87bd018b7.tar.gz cacert-mgr-4edd7b57c0057f9cfab0874a198256b87bd018b7.tar.xz cacert-mgr-4edd7b57c0057f9cfab0874a198256b87bd018b7.zip |
bug 1396: Codestyle cleanup
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'; + } } |