diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-25 00:25:29 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-25 00:25:29 +0000 |
commit | e9973f35a33f0ad72ff2fbd74250283d0e23e375 (patch) | |
tree | 8f3f4ef63ef92a1d8acf2f8499658623915f6486 /h-source/Application/Controllers/HistoryController.php | |
parent | d7cc67e72a3f53629104d811986acd688f104cda (diff) |
added list of actions carried out by administrators
Diffstat (limited to 'h-source/Application/Controllers/HistoryController.php')
-rw-r--r-- | h-source/Application/Controllers/HistoryController.php | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/h-source/Application/Controllers/HistoryController.php b/h-source/Application/Controllers/HistoryController.php index ac1ab1a..e44ce79 100644 --- a/h-source/Application/Controllers/HistoryController.php +++ b/h-source/Application/Controllers/HistoryController.php @@ -23,6 +23,29 @@ if (!defined('EG')) die('Direct access not allowed!'); class HistoryController extends BaseController { + public static $typeTable = array( + 'message' => 'message', + 'talk' => 'talk', + 'user' => 'user', + 'issue' => 'issue', + 'wiki_talk' => 'wiki talk', + 'page' => 'wiki page', + 'page_del' => 'wiki page', + ); + + public static $actionTable = array( + 'hide' => 'hide', + 'show' => 'show', + 'block' => 'block', + 'unblock' => 'unblock', + 'open' => 'open', + 'close' => 'close', + 'pageblock' => 'block', + 'pageunblock' => 'unblock', + 'pagehide' => 'hide', + 'pageshow' => 'show', + ); + protected $strings = array( 'hide' => array( @@ -157,7 +180,7 @@ class HistoryController extends BaseController 'id_name' => 'id_user', 'field_name' => 'blocked', 'actions' => array('block','unblock'), - 'group' => 'moderator', + 'group' => 'admin', ), |