* Removed renameuser permission, extension code
[lhc/web/wiklou.git] / includes / LogPage.php
index ef0dce7..5e35b50 100644 (file)
@@ -2,17 +2,17 @@
 #
 # Copyright (C) 2002, 2004 Brion Vibber <brion@pobox.com>
 # http://www.mediawiki.org/
-# 
+#
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or 
+# the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License along
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  * @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() {
@@ -67,7 +71,7 @@ class LogPage {
                                'log_params' => $this->params
                        ), $fname
                );
-               
+
                # And update recentchanges
                if ( $this->updateRecentChanges ) {
                        $titleObj = Title::makeTitle( NS_SPECIAL, 'Log/' . $this->type );
@@ -78,7 +82,7 @@ class LogPage {
                                else
                                        $rcComment .= ': ' . $this->comment;
                        }
-                       
+
                        RecentChange::notifyLog( $now, $titleObj, $wgUser, $rcComment );
                }
                return true;
@@ -89,9 +93,10 @@ class LogPage {
         */
        function validTypes() {
                static $types = array( '', 'block', 'protect', 'rights', 'delete', 'upload', 'move' );
+               wfRunHooks( 'LogPageValidTypes', array( &$types ) );
                return $types;
        }
-       
+
        /**
         * @static
         */
@@ -107,14 +112,14 @@ class LogPage {
                );
                return $actions[$type];
        }
-       
+
        /**
         * @static
         */
        function isLogType( $type ) {
                return in_array( $type, LogPage::validTypes() );
        }
-       
+
        /**
         * @static
         */
@@ -128,9 +133,11 @@ class LogPage {
                        'upload'  => 'uploadlogpage',
                        'move'    => 'movelogpage'
                );
+               wfRunHooks( 'LogPageLogName', array( &$typeText ) );
+               
                return str_replace( '_', ' ', wfMsg( $typeText[$type] ) );
        }
-       
+
        /**
         * @static
         */
@@ -144,13 +151,16 @@ class LogPage {
                        'upload'  => 'uploadlogpagetext',
                        'move'    => 'movelogpagetext'
                );
+               wfRunHooks( 'LogPageLogHeader', array( &$headerText ) );
+               
                return wfMsg( $headerText[$type] );
        }
-       
+
        /**
         * @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',
@@ -170,7 +180,7 @@ class LogPage {
                $key = "$type/$action";
                if( isset( $actions[$key] ) ) {
                        if( is_null( $title ) ) {
-                               $rv=wfMsgForContent( $actions[$key] );
+                               $rv=wfMsg( $actions[$key] );
                        } else {
                                if( $skin ) {
                                        if ( $type == 'move' ) {
@@ -185,10 +195,13 @@ class LogPage {
                                        $titleLink = $title->getPrefixedText();
                                }
                                if( count( $params ) == 0 ) {
-                                       $rv = wfMsgForContent( $actions[$key], $titleLink );
+                                       $rv = wfMsg( $actions[$key], $titleLink );
                                } else {
                                        array_unshift( $params, $titleLink );
-                                       $rv = wfMsgReal( $actions[$key], $params, true, true );
+                                       if ( $translate && $key == 'block/block' ) {
+                                               $params[1] = $wgLang->translateBlockExpiry($params[1]);
+                                       }
+                                       $rv = wfMsgReal( $actions[$key], $params, true, false );
                                }
                        }
                } else {
@@ -213,18 +226,18 @@ class LogPage {
                if ( !is_array( $params ) ) {
                        $params = array( $params );
                }
-               
+
                $this->action = $action;
                $this->target =& $target;
                $this->comment = $comment;
                $this->params = LogPage::makeParamBlob( $params );
-               
+
                $this->actionText = LogPage::actionText( $this->type, $action, $target, NULL, $params );
 
                return $this->saveContent();
        }
 
-       /** 
+       /**
         * Create a blob from a parameter array
         * @static
         */