* Implemented a cache for User::getMaxID()
[lhc/web/wiklou.git] / includes / LogPage.php
index 1fc5116..6d28ba3 100644 (file)
  * @package MediaWiki
  */
 class LogPage {
-       /* private */ var $type, $action, $comment, $params, $target;
-       var $updateRecentChanges = true;
+       /* @access private */
+       var $type, $action, $comment, $params, $target;
+       /* @acess public */
+       var $updateRecentChanges;
 
        /**
          * Constructor
          *
          * @param string $type One of '', 'block', 'protect', 'rights', 'delete',
          *               'upload', 'move'
+         * @param bool $rc Whether to update recent changes as well as the logging table
          */
-       function LogPage( $type ) {
+       function LogPage( $type, $rc = true ) {
                $this->type = $type;
+               $this->updateRecentChanges = $rc;
        }
 
        function saveContent() {
@@ -89,26 +93,10 @@ class LogPage {
         */
        function validTypes() {
                static $types = array( '', 'block', 'protect', 'rights', 'delete', 'upload', 'move' );
-               wfRunHooks( 'LogPageValidTypes', array( &$types) );
+               wfRunHooks( 'LogPageValidTypes', array( &$types ) );
                return $types;
        }
 
-       /**
-        * @static
-        */
-       function validActions( $type ) {
-               static $actions = array(
-                       '' => NULL,
-                       'block' => array( 'block', 'unblock' ),
-                       'protect' => array( 'protect', 'unprotect' ),
-                       'rights' => array( 'rights' ),
-                       'delete' => array( 'delete', 'restore' ),
-                       'upload' => array( 'upload' ),
-                       'move' => array( 'move' )
-               );
-               return $actions[$type];
-       }
-
        /**
         * @static
         */
@@ -129,7 +117,7 @@ class LogPage {
                        'upload'  => 'uploadlogpage',
                        'move'    => 'movelogpage'
                );
-               wfRunHooks( 'LogPageLogName', array( &$typeText) );
+               wfRunHooks( 'LogPageLogName', array( &$typeText ) );
                
                return str_replace( '_', ' ', wfMsg( $typeText[$type] ) );
        }
@@ -155,16 +143,20 @@ class LogPage {
        /**
         * @static
         */
-       function actionText( $type, $action, $title = NULL, $skin = NULL, $params = array(), $filterWikilinks=false ) {
+       function actionText( $type, $action, $title = NULL, $skin = NULL, $params = array(), $filterWikilinks=false, $translate=false ) {
+               global $wgLang;
                static $actions = array(
                        'block/block'       => 'blocklogentry',
                        'block/unblock'     => 'unblocklogentry',
                        'protect/protect'   => 'protectedarticle',
                        'protect/unprotect' => 'unprotectedarticle',
+                       
+                       // TODO: This whole section should be moved to extensions/Makesysop/SpecialMakesysop.php
                        'rights/rights'     => 'bureaucratlogentry',
                        'rights/addgroup'   => 'addgrouplogentry',
                        'rights/rngroup'    => 'renamegrouplogentry',
                        'rights/chgroup'    => 'changegrouplogentry',
+                       
                        'delete/delete'     => 'deletedarticle',
                        'delete/restore'    => 'undeletedarticle',
                        'upload/upload'     => 'uploadedimage',
@@ -172,6 +164,8 @@ class LogPage {
                        'move/move'         => '1movedto2',
                        'move/move_redir'   => '1movedto2_redir'
                );
+               wfRunHooks( 'LogPageActionText', array( &$actions ) );
+
                $key = "$type/$action";
                if( isset( $actions[$key] ) ) {
                        if( is_null( $title ) ) {
@@ -193,7 +187,10 @@ class LogPage {
                                        $rv = wfMsg( $actions[$key], $titleLink );
                                } else {
                                        array_unshift( $params, $titleLink );
-                                       $rv = wfMsgReal( $actions[$key], $params, true, false );
+                                       if ( $translate && $key == 'block/block' ) {
+                                               $params[1] = $wgLang->translateBlockExpiry($params[1]);
+                                       }
+                                       $rv = wfMsgReal( $actions[$key], $params, true, false ); // FIXME: use wfMsgForContent() ?
                                }
                        }
                } else {