diff options
author | Michael Tänzer <neo@nhng.de> | 2010-06-28 17:30:31 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2010-06-28 17:30:31 +0200 |
commit | 73761fe863463270a9ce13e9211791891cf17d02 (patch) | |
tree | e7bfedf99bdf4028f2a23525ad4a9f38ca1e80f4 /manager/library | |
parent | a1f716c45f882365e02a072b42a9ad05d34a39df (diff) | |
download | cacert-mgr-73761fe863463270a9ce13e9211791891cf17d02.tar.gz cacert-mgr-73761fe863463270a9ce13e9211791891cf17d02.tar.xz cacert-mgr-73761fe863463270a9ce13e9211791891cf17d02.zip |
Rename AddPoints to ManageAccount
The controller will contain all actions required to manage the test account
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'manager/library')
-rw-r--r-- | manager/library/actions/ActionManageAccount.php (renamed from manager/library/actions/ActionAddPoints.php) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manager/library/actions/ActionAddPoints.php b/manager/library/actions/ActionManageAccount.php index ef71b2f..30c8bb6 100644 --- a/manager/library/actions/ActionAddPoints.php +++ b/manager/library/actions/ActionManageAccount.php @@ -2,7 +2,7 @@ require_once (FWACTIONS_PATH . '/FWAction.php'); -class AddPoints extends FWAction { +class ManageAccount extends FWAction { /** * get a list of required permissions that are needed to access this action * @return array @@ -32,7 +32,7 @@ class AddPoints extends FWAction { * @return string */ public static function getController() { - return 'add-points'; + return 'manage-account'; } /** @@ -48,6 +48,6 @@ class AddPoints extends FWAction { * @return string */ public static function getMenuText() { - return 'Add Points'; + return I18n::_('Manage Account'); } } |