Difference between revisions of "Extension:MakePage.php"

From Organic Design wiki
(why define $egMakePageTag then not use it?)
(just use strtolower rather than testing "name", "Name", "NAME" etc)
 
Line 25: Line 25:
 
'url'        => 'http://www.organicdesign.co.nz/Extension:MakePage',
 
'url'        => 'http://www.organicdesign.co.nz/Extension:MakePage',
 
'version'    => MAKEPAGE_VERSION
 
'version'    => MAKEPAGE_VERSION
);
+
);
 
   
 
   
 
#Avoid unstubbing $wgParser on setHook() too early on modern (1.12+) MW versions, as per r35980
 
#Avoid unstubbing $wgParser on setHook() too early on modern (1.12+) MW versions, as per r35980
Line 42: Line 42:
 
function efMakePageRender( $input, $args, $parser ) {
 
function efMakePageRender( $input, $args, $parser ) {
  
foreach ($args as $k => $v) {
+
foreach ($args as $k => $v) {
$k = htmlspecialchars($k);
+
$k = htmlspecialchars($k);
$v = htmlspecialchars($v);
+
$v = htmlspecialchars($v);
if ($k == "name" || $k == "Name" || $k == "NAME") {
+
if (strtolower($k) == "name") $title = Title::newFromText($v);
$title = Title::newFromText($v);
+
}
}
+
$article = new Article($title);
}
+
$input = htmlspecialchars($input);
$article = new Article($title);
+
$article->doEdit($input,EDIT_UPDATE|EDIT_MINOR);
$input = htmlspecialchars($input);
+
return "$v has been created";
$article->doEdit($input,EDIT_UPDATE|EDIT_MINOR);
 
return "$v has been created";
 
 
}
 
}

Latest revision as of 20:35, 16 February 2009

<?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.

Template:PhpCategory:Extensions created with Template:Extension

/**

* MakePage extension - An extension which allows the title and text of a wiki page to be created 

by a simple tag, made with Template:Extension

*
* See http://www.mediawiki.org/wiki/Extension:MakePage for installation and usage details
*
* @package MediaWiki
* @subpackage Extensions
* @author User:Jack Henderson
* @copyright © 2007 User:Jack Henderson
* @licence GNU General Public Licence 2.0 or later
*/

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

define('MAKEPAGE_VERSION', '0.0.1, 2009-02-17');

$egMakePageTag = "makepage";

$wgExtensionCredits['parserhook'][] = array( 'name' => 'MakePage', 'author' => 'User:Jack Henderson', 'description' => 'An extension which allows the title and text of a wiki page to be created without leaving the current one', 'url' => 'http://www.organicdesign.co.nz/Extension:MakePage', 'version' => MAKEPAGE_VERSION );

  1. Avoid unstubbing $wgParser on setHook() too early on modern (1.12+) MW versions, as per r35980

if ( defined( 'MW_SUPPORTS_PARSERFIRSTCALLINIT' ) ) { $wgHooks['ParserFirstCallInit'][] = 'efMakePageParserInit'; } else { # Otherwise do things the old fashioned way $wgExtensionFunctions[] = 'efMakePageParserInit'; }

function efMakePageParserInit() { global $wgParser, $egMakePageTag; $wgParser->setHook( $egMakePageTag, 'efMakePageRender' ); return true; }

function efMakePageRender( $input, $args, $parser ) {

foreach ($args as $k => $v) { $k = htmlspecialchars($k); $v = htmlspecialchars($v); if (strtolower($k) == "name") $title = Title::newFromText($v); } $article = new Article($title); $input = htmlspecialchars($input); $article->doEdit($input,EDIT_UPDATE|EDIT_MINOR); return "$v has been created"; }