Difference between revisions of "Extension:ImageHistoryClear"

From Organic Design wiki
m
m
Line 1: Line 1:
 
<?php
 
<?php
 
/**
 
/**
  * ImageHistoryClear extension - A extension to strip TOC, history and links information from image page views by anonymous users. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension].
+
  * ImageHistoryClear extension - An extension to strip TOC, history and links information from image page views by anonymous users. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension].
 
  *{{php}}{{Category:Extensions|ImageHistoryClear}}{{Category:Jack}}
 
  *{{php}}{{Category:Extensions|ImageHistoryClear}}{{Category:Jack}}
 
  * See http://www.mediawiki.org/wiki/Extension:ImageHistoryClear for installation and usage details
 
  * See http://www.mediawiki.org/wiki/Extension:ImageHistoryClear for installation and usage details
Line 20: Line 20:
 
'name'        => 'ImageHistoryClear',
 
'name'        => 'ImageHistoryClear',
 
'author'      => '[http://www.organicdesign.co.nz/wiki/User:Jack User:Jack]',
 
'author'      => '[http://www.organicdesign.co.nz/wiki/User:Jack User:Jack]',
'description' => 'A extension made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension] to strip the image history and links from image pages.',
+
'description' => 'An extension to strip TOC, history and links information from image page views by anonymous users. Made with [http://www.organicdesign.co.nz/Template:Extension Template:Extension].',
 
'url'        => 'http://www.organicdesign.co.nz/Extension:ImageHistoryClear',
 
'url'        => 'http://www.organicdesign.co.nz/Extension:ImageHistoryClear',
 
'version'    => IMAGEHISTORYCLEAR_VERSION
 
'version'    => IMAGEHISTORYCLEAR_VERSION

Revision as of 20:25, 29 October 2008

<?php /**

* ImageHistoryClear extension - An extension to strip TOC, history and links information from image page views by anonymous users. Made with Template:Extension.
*Template:Php
Info.svg These are the MediaWiki extensions we're using and/or developing. Please refer to the information on the mediawiki.org wiki for installation and usage details. Extensions here which have no corresponding mediawiki article are either not ready for use or have been superseded. You can also browse our extension code in our local Subversion repository or our GitHub mirror.
* See http://www.mediawiki.org/wiki/Extension:ImageHistoryClear for installation and usage details
*
* @package MediaWiki
* @subpackage Extensions
* @author User:Jack
* @copyright © 2008 User:Jack
* @licence GNU General Public Licence 2.0 or later
*/

if (!defined('MEDIAWIKI')) die('Not an entry point.');

define('IMAGEHISTORYCLEAR_VERSION', '1.0.0, 2008-10-21');

$wgExtensionFunctions[] = 'efSetupImageHistoryClear';

$wgExtensionCredits['parserhook'][] = array( 'name' => 'ImageHistoryClear', 'author' => 'User:Jack', 'description' => 'An extension to strip TOC, history and links information from image page views by anonymous users. Made with Template:Extension.', 'url' => 'http://www.organicdesign.co.nz/Extension:ImageHistoryClear', 'version' => IMAGEHISTORYCLEAR_VERSION );

/**

* Regular expression to replace TOC, history and image information.
*/

function efImageHistoryClear (&$out) {

$out->mBodytext = preg_replace ('%

    .+?

%s',,$out->mBodytext); $out->mBodytext = preg_replace ('%

mBodytext); return true; } /** * Setup function specifies a condition for the user being anonymous and the page being an image page */ function efSetupImageHistoryClear() { global $wgHooks,$wgUser; $title = Title::newFromText($_REQUEST['title']); #print_r($title); if($title->getNamespace()==6 && $wgUser->isAnon()) $wgHooks['BeforePageDisplay'][] = 'efImageHistoryClear'; }