2006-07-03 11:07:00 +00:00
|
|
|
<?php
|
2010-08-22 14:31:05 +00:00
|
|
|
/**
|
|
|
|
|
* Parser functions provided by MediaWiki core
|
|
|
|
|
*
|
2012-04-30 09:22:16 +00:00
|
|
|
* 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
|
|
|
|
|
* (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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
2010-08-22 14:31:05 +00:00
|
|
|
* @file
|
2012-04-30 09:22:16 +00:00
|
|
|
* @ingroup Parser
|
2010-08-22 14:31:05 +00:00
|
|
|
*/
|
2006-07-03 11:07:00 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Various core parser functions, registered in Parser::firstCallInit()
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Parser
|
2006-07-03 11:07:00 +00:00
|
|
|
*/
|
|
|
|
|
class CoreParserFunctions {
|
2011-02-08 23:18:13 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
2012-01-12 19:41:18 +00:00
|
|
|
* @return void
|
2011-02-08 23:18:13 +00:00
|
|
|
*/
|
2008-02-20 08:53:12 +00:00
|
|
|
static function register( $parser ) {
|
|
|
|
|
global $wgAllowDisplayTitle, $wgAllowSlowParserFunctions;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-02-20 08:53:12 +00:00
|
|
|
# Syntax for arguments (see self::setFunctionHook):
|
|
|
|
|
# "name for lookup in localized magic words array",
|
|
|
|
|
# function callback,
|
2010-03-18 11:42:26 +00:00
|
|
|
# optional SFH_NO_HASH to omit the hash from calls (e.g. {{int:...}}
|
2008-02-20 08:53:12 +00:00
|
|
|
# instead of {{#int:...}})
|
2013-12-27 20:57:50 +00:00
|
|
|
$noHashFunctions = array(
|
|
|
|
|
'ns', 'nse', 'urlencode', 'lcfirst', 'ucfirst', 'lc', 'uc',
|
|
|
|
|
'localurl', 'localurle', 'fullurl', 'fullurle', 'canonicalurl',
|
|
|
|
|
'canonicalurle', 'formatnum', 'grammar', 'gender', 'plural',
|
|
|
|
|
'numberofpages', 'numberofusers', 'numberofactiveusers',
|
|
|
|
|
'numberofarticles', 'numberoffiles', 'numberofadmins',
|
|
|
|
|
'numberingroup', 'numberofedits', 'numberofviews', 'language',
|
|
|
|
|
'padleft', 'padright', 'anchorencode', 'defaultsort', 'filepath',
|
2013-12-27 23:51:24 +00:00
|
|
|
'pagesincategory', 'pagesize', 'protectionlevel',
|
2013-12-27 20:57:50 +00:00
|
|
|
'namespacee', 'namespacenumber', 'talkspace', 'talkspacee',
|
|
|
|
|
'subjectspace', 'subjectspacee', 'pagename', 'pagenamee',
|
|
|
|
|
'fullpagename', 'fullpagenamee', 'rootpagename', 'rootpagenamee',
|
|
|
|
|
'basepagename', 'basepagenamee', 'subpagename', 'subpagenamee',
|
|
|
|
|
'talkpagename', 'talkpagenamee', 'subjectpagename',
|
|
|
|
|
'subjectpagenamee', 'pageid', 'revisionid', 'revisionday',
|
|
|
|
|
'revisionday2', 'revisionmonth', 'revisionmonth1', 'revisionyear',
|
2014-01-02 18:27:29 +00:00
|
|
|
'revisiontimestamp', 'revisionuser', 'cascadingsources',
|
2013-12-27 20:57:50 +00:00
|
|
|
);
|
|
|
|
|
foreach ( $noHashFunctions as $func ) {
|
|
|
|
|
$parser->setFunctionHook( $func, array( __CLASS__, $func ), SFH_NO_HASH );
|
|
|
|
|
}
|
2008-02-20 08:53:12 +00:00
|
|
|
|
2013-12-27 23:51:24 +00:00
|
|
|
$parser->setFunctionHook( 'namespace', array( __CLASS__, 'mwnamespace' ), SFH_NO_HASH );
|
2013-12-27 20:57:50 +00:00
|
|
|
$parser->setFunctionHook( 'int', array( __CLASS__, 'intFunction' ), SFH_NO_HASH );
|
|
|
|
|
$parser->setFunctionHook( 'special', array( __CLASS__, 'special' ) );
|
|
|
|
|
$parser->setFunctionHook( 'speciale', array( __CLASS__, 'speciale' ) );
|
|
|
|
|
$parser->setFunctionHook( 'tag', array( __CLASS__, 'tagObj' ), SFH_OBJECT_ARGS );
|
|
|
|
|
$parser->setFunctionHook( 'formatdate', array( __CLASS__, 'formatDate' ) );
|
2008-02-20 08:53:12 +00:00
|
|
|
|
|
|
|
|
if ( $wgAllowDisplayTitle ) {
|
|
|
|
|
$parser->setFunctionHook( 'displaytitle', array( __CLASS__, 'displaytitle' ), SFH_NO_HASH );
|
|
|
|
|
}
|
|
|
|
|
if ( $wgAllowSlowParserFunctions ) {
|
|
|
|
|
$parser->setFunctionHook( 'pagesinnamespace', array( __CLASS__, 'pagesinnamespace' ), SFH_NO_HASH );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param string $part1
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
2006-09-30 04:53:36 +00:00
|
|
|
static function intFunction( $parser, $part1 = '' /*, ... */ ) {
|
|
|
|
|
if ( strval( $part1 ) !== '' ) {
|
|
|
|
|
$args = array_slice( func_get_args(), 2 );
|
2011-10-19 14:16:01 +00:00
|
|
|
$message = wfMessage( $part1, $args )->inLanguage( $parser->getOptions()->getUserLangObj() )->plain();
|
2011-10-29 22:22:51 +00:00
|
|
|
return array( $message, 'noparse' => false );
|
2006-09-30 04:53:36 +00:00
|
|
|
} else {
|
|
|
|
|
return array( 'found' => false );
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $date
|
|
|
|
|
* @param null $defaultPref
|
|
|
|
|
* @return mixed|string
|
|
|
|
|
*/
|
2009-03-10 05:19:05 +00:00
|
|
|
static function formatDate( $parser, $date, $defaultPref = null ) {
|
2012-06-01 09:52:57 +00:00
|
|
|
$lang = $parser->getFunctionLang();
|
|
|
|
|
$df = DateFormatter::getInstance( $lang );
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2010-02-11 14:57:43 +00:00
|
|
|
$date = trim( $date );
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2010-10-15 23:10:05 +00:00
|
|
|
$pref = $parser->getOptions()->getDateFormat();
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2009-03-18 21:32:58 +00:00
|
|
|
// Specify a different default date format other than the the normal default
|
2013-06-11 23:01:52 +00:00
|
|
|
// if the user has 'default' for their setting
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $pref == 'default' && $defaultPref ) {
|
2009-03-10 05:19:05 +00:00
|
|
|
$pref = $defaultPref;
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2010-02-11 14:57:43 +00:00
|
|
|
$date = $df->reformat( $pref, $date, array( 'match-whole' ) );
|
2009-03-10 01:07:47 +00:00
|
|
|
return $date;
|
|
|
|
|
}
|
2009-06-03 14:51:08 +00:00
|
|
|
|
2006-07-03 11:07:00 +00:00
|
|
|
static function ns( $parser, $part1 = '' ) {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
if ( intval( $part1 ) || $part1 == "0" ) {
|
2008-10-09 00:56:26 +00:00
|
|
|
$index = intval( $part1 );
|
2006-07-03 11:07:00 +00:00
|
|
|
} else {
|
2008-10-09 00:56:26 +00:00
|
|
|
$index = $wgContLang->getNsIndex( str_replace( ' ', '_', $part1 ) );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
2008-10-09 00:56:26 +00:00
|
|
|
if ( $index !== false ) {
|
|
|
|
|
return $wgContLang->getFormattedNsText( $index );
|
2006-07-03 11:07:00 +00:00
|
|
|
} else {
|
|
|
|
|
return array( 'found' => false );
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-02-11 14:57:43 +00:00
|
|
|
|
2009-08-02 18:16:56 +00:00
|
|
|
static function nse( $parser, $part1 = '' ) {
|
2012-03-26 18:26:32 +00:00
|
|
|
$ret = self::ns( $parser, $part1 );
|
|
|
|
|
if ( is_string( $ret ) ) {
|
|
|
|
|
$ret = wfUrlencode( str_replace( ' ', '_', $ret ) );
|
|
|
|
|
}
|
|
|
|
|
return $ret;
|
2009-08-02 18:16:56 +00:00
|
|
|
}
|
2006-07-03 11:07:00 +00:00
|
|
|
|
2010-04-08 00:29:58 +00:00
|
|
|
/**
|
|
|
|
|
* urlencodes a string according to one of three patterns: (bug 22474)
|
|
|
|
|
*
|
|
|
|
|
* By default (for HTTP "query" strings), spaces are encoded as '+'.
|
|
|
|
|
* Or to encode a value for the HTTP "path", spaces are encoded as '%20'.
|
|
|
|
|
* For links to "wiki"s, or similar software, spaces are encoded as '_',
|
|
|
|
|
*
|
2010-06-09 14:57:59 +00:00
|
|
|
* @param $parser Parser object
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $s The text to encode.
|
|
|
|
|
* @param string $arg (optional): The type of encoding.
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return string
|
2010-04-08 00:29:58 +00:00
|
|
|
*/
|
|
|
|
|
static function urlencode( $parser, $s = '', $arg = null ) {
|
|
|
|
|
static $magicWords = null;
|
|
|
|
|
if ( is_null( $magicWords ) ) {
|
|
|
|
|
$magicWords = new MagicWordArray( array( 'url_path', 'url_query', 'url_wiki' ) );
|
|
|
|
|
}
|
2013-04-26 14:42:31 +00:00
|
|
|
switch ( $magicWords->matchStartToEnd( $arg ) ) {
|
2010-04-08 00:29:58 +00:00
|
|
|
|
|
|
|
|
// Encode as though it's a wiki page, '_' for ' '.
|
|
|
|
|
case 'url_wiki':
|
2012-03-20 04:39:09 +00:00
|
|
|
$func = 'wfUrlencode';
|
|
|
|
|
$s = str_replace( ' ', '_', $s );
|
|
|
|
|
break;
|
2010-04-08 00:29:58 +00:00
|
|
|
|
|
|
|
|
// Encode for an HTTP Path, '%20' for ' '.
|
|
|
|
|
case 'url_path':
|
2012-03-20 04:39:09 +00:00
|
|
|
$func = 'rawurlencode';
|
|
|
|
|
break;
|
2010-04-08 00:29:58 +00:00
|
|
|
|
|
|
|
|
// Encode for HTTP query, '+' for ' '.
|
|
|
|
|
case 'url_query':
|
|
|
|
|
default:
|
2012-03-20 04:39:09 +00:00
|
|
|
$func = 'urlencode';
|
2010-04-08 00:29:58 +00:00
|
|
|
}
|
2012-03-20 04:39:09 +00:00
|
|
|
return $parser->markerSkipCallback( $s, $func );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function lcfirst( $parser, $s = '' ) {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
return $wgContLang->lcfirst( $s );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function ucfirst( $parser, $s = '' ) {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
return $wgContLang->ucfirst( $s );
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param string $s
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2006-07-03 11:07:00 +00:00
|
|
|
static function lc( $parser, $s = '' ) {
|
|
|
|
|
global $wgContLang;
|
2012-03-20 04:39:09 +00:00
|
|
|
return $parser->markerSkipCallback( $s, array( $wgContLang, 'lc' ) );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param string $s
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2006-07-03 11:07:00 +00:00
|
|
|
static function uc( $parser, $s = '' ) {
|
|
|
|
|
global $wgContLang;
|
2012-03-20 04:39:09 +00:00
|
|
|
return $parser->markerSkipCallback( $s, array( $wgContLang, 'uc' ) );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
2013-12-27 21:01:17 +00:00
|
|
|
static function localurl( $parser, $s = '', $arg = null ) {
|
|
|
|
|
return self::urlFunction( 'getLocalURL', $s, $arg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function localurle( $parser, $s = '', $arg = null ) {
|
2013-12-29 15:21:37 +00:00
|
|
|
return htmlspecialchars( self::urlFunction( 'getLocalURL', $s, $arg ) );
|
2013-12-27 21:01:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function fullurl( $parser, $s = '', $arg = null ) {
|
|
|
|
|
return self::urlFunction( 'getFullURL', $s, $arg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function fullurle( $parser, $s = '', $arg = null ) {
|
|
|
|
|
return htmlspecialchars( self::urlFunction( 'getFullURL', $s, $arg ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function canonicalurl( $parser, $s = '', $arg = null ) {
|
|
|
|
|
return self::urlFunction( 'getCanonicalURL', $s, $arg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static function canonicalurle( $parser, $s = '', $arg = null ) {
|
|
|
|
|
return self::urlFunction( 'escapeCanonicalURL', $s, $arg );
|
|
|
|
|
}
|
2006-07-03 11:07:00 +00:00
|
|
|
|
|
|
|
|
static function urlFunction( $func, $s = '', $arg = null ) {
|
|
|
|
|
$title = Title::newFromText( $s );
|
|
|
|
|
# Due to order of execution of a lot of bits, the values might be encoded
|
|
|
|
|
# before arriving here; if that's true, then the title can't be created
|
|
|
|
|
# and the variable will fail. If we can't get a decent title from the first
|
|
|
|
|
# attempt, url-decode and try for a second.
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $title ) ) {
|
2010-02-13 23:58:30 +00:00
|
|
|
$title = Title::newFromURL( urldecode( $s ) );
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
if ( !is_null( $title ) ) {
|
2008-12-23 21:12:43 +00:00
|
|
|
# Convert NS_MEDIA -> NS_FILE
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $title->getNamespace() == NS_MEDIA ) {
|
2009-05-24 08:29:10 +00:00
|
|
|
$title = Title::makeTitle( NS_FILE, $title->getDBkey() );
|
2008-12-23 21:12:43 +00:00
|
|
|
}
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !is_null( $arg ) ) {
|
2006-07-03 11:07:00 +00:00
|
|
|
$text = $title->$func( $arg );
|
|
|
|
|
} else {
|
|
|
|
|
$text = $title->$func();
|
|
|
|
|
}
|
|
|
|
|
return $text;
|
|
|
|
|
} else {
|
|
|
|
|
return array( 'found' => false );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param string $num
|
2012-11-28 10:24:45 +00:00
|
|
|
* @param string $arg
|
|
|
|
|
* @return string
|
2011-02-19 01:02:56 +00:00
|
|
|
*/
|
2012-11-28 10:24:45 +00:00
|
|
|
static function formatnum( $parser, $num = '', $arg = null ) {
|
|
|
|
|
if ( self::matchAgainstMagicword( 'rawsuffix', $arg ) ) {
|
2012-03-20 04:39:09 +00:00
|
|
|
$func = array( $parser->getFunctionLang(), 'parseFormattedNumber' );
|
2012-11-28 10:24:45 +00:00
|
|
|
} elseif ( self::matchAgainstMagicword( 'nocommafysuffix', $arg ) ) {
|
|
|
|
|
$func = array( $parser->getFunctionLang(), 'formatNumNoSeparators' );
|
2008-03-15 10:39:56 +00:00
|
|
|
} else {
|
2012-03-20 04:39:09 +00:00
|
|
|
$func = array( $parser->getFunctionLang(), 'formatNum' );
|
2008-03-15 10:39:56 +00:00
|
|
|
}
|
2012-03-20 04:39:09 +00:00
|
|
|
return $parser->markerSkipCallback( $num, $func );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
2007-01-13 12:58:33 +00:00
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param string $case
|
|
|
|
|
* @param string $word
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2006-11-29 05:45:03 +00:00
|
|
|
static function grammar( $parser, $case = '', $word = '' ) {
|
2012-03-20 04:39:09 +00:00
|
|
|
$word = $parser->killMarkers( $word );
|
2006-07-03 11:07:00 +00:00
|
|
|
return $parser->getFunctionLang()->convertGrammar( $word, $case );
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-19 01:02:56 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
2011-06-20 10:19:52 +00:00
|
|
|
* @param $username string
|
2011-02-19 01:02:56 +00:00
|
|
|
* @return
|
|
|
|
|
*/
|
2011-06-20 10:04:55 +00:00
|
|
|
static function gender( $parser, $username ) {
|
2009-06-03 06:28:19 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2012-02-08 06:09:58 +00:00
|
|
|
$forms = array_slice( func_get_args(), 2 );
|
|
|
|
|
|
|
|
|
|
// Some shortcuts to avoid loading user data unnecessarily
|
|
|
|
|
if ( count( $forms ) === 0 ) {
|
2012-02-16 02:01:00 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2012-02-08 06:09:58 +00:00
|
|
|
return '';
|
|
|
|
|
} elseif ( count( $forms ) === 1 ) {
|
2012-02-16 02:01:00 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2012-02-08 06:09:58 +00:00
|
|
|
return $forms[0];
|
|
|
|
|
}
|
2009-01-26 09:48:17 +00:00
|
|
|
|
2011-06-20 10:04:55 +00:00
|
|
|
$username = trim( $username );
|
|
|
|
|
|
2009-01-26 09:48:17 +00:00
|
|
|
// default
|
|
|
|
|
$gender = User::getDefaultOption( 'gender' );
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2009-03-24 06:58:43 +00:00
|
|
|
// allow prefix.
|
2011-06-20 10:04:55 +00:00
|
|
|
$title = Title::newFromText( $username );
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2011-06-20 10:04:55 +00:00
|
|
|
if ( $title && $title->getNamespace() == NS_USER ) {
|
|
|
|
|
$username = $title->getText();
|
|
|
|
|
}
|
2009-01-26 09:48:17 +00:00
|
|
|
|
2010-12-10 18:17:20 +00:00
|
|
|
// check parameter, or use the ParserOptions if in interface message
|
2011-06-20 10:04:55 +00:00
|
|
|
$user = User::newFromName( $username );
|
2009-01-26 09:48:17 +00:00
|
|
|
if ( $user ) {
|
2012-04-07 20:45:31 +00:00
|
|
|
$gender = GenderCache::singleton()->getGenderOf( $user, __METHOD__ );
|
2011-06-20 10:04:55 +00:00
|
|
|
} elseif ( $username === '' && $parser->getOptions()->getInterfaceMessage() ) {
|
2012-04-07 20:45:31 +00:00
|
|
|
$gender = GenderCache::singleton()->getGenderOf( $parser->getOptions()->getUser(), __METHOD__ );
|
2009-01-26 09:48:17 +00:00
|
|
|
}
|
2009-06-03 06:28:19 +00:00
|
|
|
$ret = $parser->getFunctionLang()->gender( $gender, $forms );
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return $ret;
|
2009-01-26 09:48:17 +00:00
|
|
|
}
|
2011-02-19 01:02:56 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param string $text
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2010-02-11 14:57:43 +00:00
|
|
|
static function plural( $parser, $text = '' ) {
|
|
|
|
|
$forms = array_slice( func_get_args(), 2 );
|
2006-12-23 18:58:44 +00:00
|
|
|
$text = $parser->getFunctionLang()->parseFormattedNumber( $text );
|
2012-08-27 08:53:42 +00:00
|
|
|
settype( $text, ctype_digit( $text ) ? 'int' : 'float' );
|
2007-11-18 20:15:49 +00:00
|
|
|
return $parser->getFunctionLang()->convertPlural( $text, $forms );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
2007-06-25 15:51:09 +00:00
|
|
|
/**
|
2008-04-18 14:19:00 +00:00
|
|
|
* Override the title of the page when viewed, provided we've been given a
|
|
|
|
|
* title which will normalise to the canonical title
|
2007-06-25 15:51:09 +00:00
|
|
|
*
|
2010-02-14 21:23:38 +00:00
|
|
|
* @param $parser Parser: parent parser
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $text desired title text
|
2010-02-14 21:23:38 +00:00
|
|
|
* @return String
|
2007-06-25 15:51:09 +00:00
|
|
|
*/
|
2009-04-19 23:48:50 +00:00
|
|
|
static function displaytitle( $parser, $text = '' ) {
|
|
|
|
|
global $wgRestrictDisplayTitle;
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2013-05-22 08:48:14 +00:00
|
|
|
// parse a limited subset of wiki markup (just the single quote items)
|
2009-06-08 16:53:39 +00:00
|
|
|
$text = $parser->doQuotes( $text );
|
|
|
|
|
|
2013-05-22 08:48:14 +00:00
|
|
|
// remove stripped text (e.g. the UNIQ-QINU stuff) that was generated by tag extensions/whatever
|
2009-06-08 16:53:39 +00:00
|
|
|
$text = preg_replace( '/' . preg_quote( $parser->uniqPrefix(), '/' ) . '.*?'
|
|
|
|
|
. preg_quote( Parser::MARKER_SUFFIX, '/' ) . '/', '', $text );
|
|
|
|
|
|
2013-05-22 08:48:14 +00:00
|
|
|
// list of disallowed tags for DISPLAYTITLE
|
|
|
|
|
// these will be escaped even though they are allowed in normal wiki text
|
2009-06-08 16:53:39 +00:00
|
|
|
$bad = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div', 'blockquote', 'ol', 'ul', 'li', 'hr',
|
|
|
|
|
'table', 'tr', 'th', 'td', 'dl', 'dd', 'caption', 'p', 'ruby', 'rb', 'rt', 'rp', 'br' );
|
|
|
|
|
|
2013-05-22 08:48:14 +00:00
|
|
|
// disallow some styles that could be used to bypass $wgRestrictDisplayTitle
|
|
|
|
|
if ( $wgRestrictDisplayTitle ) {
|
2013-06-20 22:18:36 +00:00
|
|
|
$htmlTagsCallback = function ( &$params ) {
|
2013-05-22 08:48:14 +00:00
|
|
|
$decoded = Sanitizer::decodeTagAttributes( $params );
|
|
|
|
|
|
|
|
|
|
if ( isset( $decoded['style'] ) ) {
|
|
|
|
|
// this is called later anyway, but we need it right now for the regexes below to be safe
|
|
|
|
|
// calling it twice doesn't hurt
|
|
|
|
|
$decoded['style'] = Sanitizer::checkCss( $decoded['style'] );
|
|
|
|
|
|
|
|
|
|
if ( preg_match( '/(display|user-select|visibility)\s*:/i', $decoded['style'] ) ) {
|
|
|
|
|
$decoded['style'] = '/* attempt to bypass $wgRestrictDisplayTitle */';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$params = Sanitizer::safeEncodeTagAttributes( $decoded );
|
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
$htmlTagsCallback = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// only requested titles that normalize to the actual title are allowed through
|
|
|
|
|
// if $wgRestrictDisplayTitle is true (it is by default)
|
|
|
|
|
// mimic the escaping process that occurs in OutputPage::setPageTitle
|
|
|
|
|
$text = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $text, $htmlTagsCallback, array(), array(), $bad ) );
|
2009-04-19 23:48:50 +00:00
|
|
|
$title = Title::newFromText( Sanitizer::stripAllTags( $text ) );
|
2008-12-31 16:49:38 +00:00
|
|
|
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !$wgRestrictDisplayTitle ) {
|
|
|
|
|
$parser->mOutput->setDisplayTitle( $text );
|
|
|
|
|
} elseif ( $title instanceof Title && $title->getFragment() == '' && $title->equals( $parser->mTitle ) ) {
|
2009-04-19 23:48:50 +00:00
|
|
|
$parser->mOutput->setDisplayTitle( $text );
|
2008-08-17 21:08:58 +00:00
|
|
|
}
|
2009-04-09 05:15:43 +00:00
|
|
|
|
2006-07-03 11:07:00 +00:00
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-28 10:24:45 +00:00
|
|
|
/**
|
|
|
|
|
* Matches the given value against the value of given magic word
|
|
|
|
|
*
|
|
|
|
|
* @param string $magicword magic word key
|
|
|
|
|
* @param mixed $value value to match
|
|
|
|
|
* @return boolean true on successful match
|
|
|
|
|
*/
|
2013-11-23 13:42:32 +00:00
|
|
|
private static function matchAgainstMagicword( $magicword, $value ) {
|
2012-11-28 10:24:45 +00:00
|
|
|
if ( strval( $value ) === '' ) {
|
2006-07-03 11:07:00 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
2012-11-28 10:24:45 +00:00
|
|
|
$mwObject = MagicWord::get( $magicword );
|
|
|
|
|
return $mwObject->match( $value );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-03-18 22:34:10 +00:00
|
|
|
static function formatRaw( $num, $raw ) {
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( self::matchAgainstMagicword( 'rawsuffix', $raw ) ) {
|
2008-03-18 22:34:10 +00:00
|
|
|
return $num;
|
2006-07-03 13:55:52 +00:00
|
|
|
} else {
|
2006-07-03 11:07:00 +00:00
|
|
|
global $wgContLang;
|
2008-03-18 22:34:10 +00:00
|
|
|
return $wgContLang->formatNum( $num );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-03-18 22:34:10 +00:00
|
|
|
static function numberofpages( $parser, $raw = null ) {
|
|
|
|
|
return self::formatRaw( SiteStats::pages(), $raw );
|
|
|
|
|
}
|
|
|
|
|
static function numberofusers( $parser, $raw = null ) {
|
|
|
|
|
return self::formatRaw( SiteStats::users(), $raw );
|
|
|
|
|
}
|
2009-02-17 23:05:04 +00:00
|
|
|
static function numberofactiveusers( $parser, $raw = null ) {
|
2009-02-04 22:16:35 +00:00
|
|
|
return self::formatRaw( SiteStats::activeUsers(), $raw );
|
|
|
|
|
}
|
2008-03-18 22:34:10 +00:00
|
|
|
static function numberofarticles( $parser, $raw = null ) {
|
|
|
|
|
return self::formatRaw( SiteStats::articles(), $raw );
|
|
|
|
|
}
|
|
|
|
|
static function numberoffiles( $parser, $raw = null ) {
|
|
|
|
|
return self::formatRaw( SiteStats::images(), $raw );
|
|
|
|
|
}
|
|
|
|
|
static function numberofadmins( $parser, $raw = null ) {
|
2013-02-03 19:42:08 +00:00
|
|
|
return self::formatRaw( SiteStats::numberingroup( 'sysop' ), $raw );
|
2008-03-18 22:34:10 +00:00
|
|
|
}
|
|
|
|
|
static function numberofedits( $parser, $raw = null ) {
|
|
|
|
|
return self::formatRaw( SiteStats::edits(), $raw );
|
|
|
|
|
}
|
2008-10-19 04:11:02 +00:00
|
|
|
static function numberofviews( $parser, $raw = null ) {
|
2013-06-17 19:09:06 +00:00
|
|
|
global $wgDisableCounters;
|
|
|
|
|
return !$wgDisableCounters ? self::formatRaw( SiteStats::views(), $raw ) : '';
|
2008-10-19 04:11:02 +00:00
|
|
|
}
|
2006-11-29 05:45:03 +00:00
|
|
|
static function pagesinnamespace( $parser, $namespace = 0, $raw = null ) {
|
2008-03-18 22:34:10 +00:00
|
|
|
return self::formatRaw( SiteStats::pagesInNs( intval( $namespace ) ), $raw );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
2013-04-26 14:42:31 +00:00
|
|
|
static function numberingroup( $parser, $name = '', $raw = null ) {
|
2008-08-28 00:04:57 +00:00
|
|
|
return self::formatRaw( SiteStats::numberingroup( strtolower( $name ) ), $raw );
|
2009-06-08 16:53:39 +00:00
|
|
|
}
|
|
|
|
|
|
2009-03-04 18:59:28 +00:00
|
|
|
/**
|
|
|
|
|
* Given a title, return the namespace name that would be given by the
|
|
|
|
|
* corresponding magic word
|
|
|
|
|
* Note: function name changed to "mwnamespace" rather than "namespace"
|
|
|
|
|
* to not break PHP 5.3
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return mixed|string
|
2009-03-04 18:59:28 +00:00
|
|
|
*/
|
|
|
|
|
static function mwnamespace( $parser, $title = null ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
return str_replace( '_', ' ', $t->getNsText() );
|
|
|
|
|
}
|
|
|
|
|
static function namespacee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
return wfUrlencode( $t->getNsText() );
|
|
|
|
|
}
|
2012-04-01 10:27:59 +00:00
|
|
|
static function namespacenumber( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2012-04-01 10:27:59 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2012-04-01 10:27:59 +00:00
|
|
|
return $t->getNamespace();
|
|
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
static function talkspace( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) || !$t->canTalk() ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
return str_replace( '_', ' ', $t->getTalkNsText() );
|
|
|
|
|
}
|
|
|
|
|
static function talkspacee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) || !$t->canTalk() ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
return wfUrlencode( $t->getTalkNsText() );
|
|
|
|
|
}
|
|
|
|
|
static function subjectspace( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
return str_replace( '_', ' ', $t->getSubjectNsText() );
|
|
|
|
|
}
|
|
|
|
|
static function subjectspacee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 01:35:18 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 01:35:18 +00:00
|
|
|
return wfUrlencode( $t->getSubjectNsText() );
|
|
|
|
|
}
|
2011-05-21 19:35:16 +00:00
|
|
|
|
|
|
|
|
/**
|
2009-01-31 22:25:01 +00:00
|
|
|
* Functions to get and normalize pagenames, corresponding to the magic words
|
|
|
|
|
* of the same names
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return String
|
2011-05-21 19:35:16 +00:00
|
|
|
*/
|
2009-01-31 22:25:01 +00:00
|
|
|
static function pagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 22:25:01 +00:00
|
|
|
return wfEscapeWikiText( $t->getText() );
|
|
|
|
|
}
|
|
|
|
|
static function pagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2011-01-18 20:15:50 +00:00
|
|
|
return wfEscapeWikiText( $t->getPartialURL() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
static function fullpagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) || !$t->canTalk() ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 22:25:01 +00:00
|
|
|
return wfEscapeWikiText( $t->getPrefixedText() );
|
|
|
|
|
}
|
|
|
|
|
static function fullpagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) || !$t->canTalk() ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2011-01-18 20:15:50 +00:00
|
|
|
return wfEscapeWikiText( $t->getPrefixedURL() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
static function subpagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2011-01-18 20:15:50 +00:00
|
|
|
return wfEscapeWikiText( $t->getSubpageText() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
static function subpagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2011-01-18 20:15:50 +00:00
|
|
|
return wfEscapeWikiText( $t->getSubpageUrlForm() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
2013-04-21 14:09:49 +00:00
|
|
|
static function rootpagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
return wfEscapeWikiText( $t->getRootText() );
|
|
|
|
|
}
|
|
|
|
|
static function rootpagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
return wfEscapeWikiText( wfUrlEncode( str_replace( ' ', '_', $t->getRootText() ) ) );
|
|
|
|
|
}
|
2009-01-31 22:25:01 +00:00
|
|
|
static function basepagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2011-01-18 20:15:50 +00:00
|
|
|
return wfEscapeWikiText( $t->getBaseText() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
static function basepagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2011-01-18 20:15:50 +00:00
|
|
|
return wfEscapeWikiText( wfUrlEncode( str_replace( ' ', '_', $t->getBaseText() ) ) );
|
2009-06-08 16:53:39 +00:00
|
|
|
}
|
2009-01-31 22:25:01 +00:00
|
|
|
static function talkpagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) || !$t->canTalk() ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 22:25:01 +00:00
|
|
|
return wfEscapeWikiText( $t->getTalkPage()->getPrefixedText() );
|
|
|
|
|
}
|
|
|
|
|
static function talkpagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) || !$t->canTalk() ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2013-03-22 07:39:02 +00:00
|
|
|
return wfEscapeWikiText( $t->getTalkPage()->getPrefixedURL() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
static function subjectpagename( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2009-01-31 22:25:01 +00:00
|
|
|
return wfEscapeWikiText( $t->getSubjectPage()->getPrefixedText() );
|
|
|
|
|
}
|
|
|
|
|
static function subjectpagenamee( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( is_null( $t ) ) {
|
2009-01-31 22:25:01 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2013-03-22 07:39:02 +00:00
|
|
|
return wfEscapeWikiText( $t->getSubjectPage()->getPrefixedURL() );
|
2009-01-31 22:25:01 +00:00
|
|
|
}
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2008-04-18 14:19:00 +00:00
|
|
|
/**
|
2012-07-25 15:51:05 +00:00
|
|
|
* Return the number of pages, files or subcats in the given category,
|
|
|
|
|
* or 0 if it's nonexistent. This is an expensive parser function and
|
|
|
|
|
* can't be called too many times per page.
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return string
|
2008-04-18 14:19:00 +00:00
|
|
|
*/
|
2012-07-25 15:51:05 +00:00
|
|
|
static function pagesincategory( $parser, $name = '', $arg1 = null, $arg2 = null ) {
|
2013-04-18 04:01:53 +00:00
|
|
|
global $wgContLang;
|
2012-07-25 15:51:05 +00:00
|
|
|
static $magicWords = null;
|
|
|
|
|
if ( is_null( $magicWords ) ) {
|
|
|
|
|
$magicWords = new MagicWordArray( array(
|
|
|
|
|
'pagesincategory_all',
|
|
|
|
|
'pagesincategory_pages',
|
|
|
|
|
'pagesincategory_subcats',
|
|
|
|
|
'pagesincategory_files'
|
|
|
|
|
) );
|
|
|
|
|
}
|
2008-04-18 14:34:38 +00:00
|
|
|
static $cache = array();
|
|
|
|
|
|
2012-07-25 15:51:05 +00:00
|
|
|
// split the given option to its variable
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( self::matchAgainstMagicword( 'rawsuffix', $arg1 ) ) {
|
2012-07-25 15:51:05 +00:00
|
|
|
//{{pagesincategory:|raw[|type]}}
|
|
|
|
|
$raw = $arg1;
|
|
|
|
|
$type = $magicWords->matchStartToEnd( $arg2 );
|
|
|
|
|
} else {
|
|
|
|
|
//{{pagesincategory:[|type[|raw]]}}
|
|
|
|
|
$type = $magicWords->matchStartToEnd( $arg1 );
|
|
|
|
|
$raw = $arg2;
|
|
|
|
|
}
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !$type ) { //backward compatibility
|
2012-07-25 15:51:05 +00:00
|
|
|
$type = 'pagesincategory_all';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitleSafe( NS_CATEGORY, $name );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !$title ) { # invalid title
|
2008-04-18 14:42:24 +00:00
|
|
|
return self::formatRaw( 0, $raw );
|
|
|
|
|
}
|
2013-04-18 04:01:53 +00:00
|
|
|
$wgContLang->findVariantLink( $name, $title, true );
|
2008-04-18 14:42:24 +00:00
|
|
|
|
2012-07-25 15:51:05 +00:00
|
|
|
// Normalize name for cache
|
|
|
|
|
$name = $title->getDBkey();
|
|
|
|
|
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !isset( $cache[$name] ) ) {
|
2012-07-25 15:51:05 +00:00
|
|
|
$category = Category::newFromTitle( $title );
|
2008-04-18 14:34:38 +00:00
|
|
|
|
2012-07-25 15:51:05 +00:00
|
|
|
$allCount = $subcatCount = $fileCount = $pagesCount = 0;
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $parser->incrementExpensiveFunctionCount() ) {
|
2012-07-25 15:51:05 +00:00
|
|
|
// $allCount is the total number of cat members,
|
|
|
|
|
// not the count of how many members are normal pages.
|
|
|
|
|
$allCount = (int)$category->getPageCount();
|
|
|
|
|
$subcatCount = (int)$category->getSubcatCount();
|
|
|
|
|
$fileCount = (int)$category->getFileCount();
|
|
|
|
|
$pagesCount = $allCount - $subcatCount - $fileCount;
|
|
|
|
|
}
|
|
|
|
|
$cache[$name]['pagesincategory_all'] = $allCount;
|
|
|
|
|
$cache[$name]['pagesincategory_pages'] = $pagesCount;
|
|
|
|
|
$cache[$name]['pagesincategory_subcats'] = $subcatCount;
|
|
|
|
|
$cache[$name]['pagesincategory_files'] = $fileCount;
|
2008-04-07 22:11:31 +00:00
|
|
|
}
|
2012-07-25 15:51:05 +00:00
|
|
|
|
|
|
|
|
$count = $cache[$name][$type];
|
2008-04-18 14:34:38 +00:00
|
|
|
return self::formatRaw( $count, $raw );
|
2008-04-07 22:11:31 +00:00
|
|
|
}
|
2006-07-03 11:07:00 +00:00
|
|
|
|
2008-04-18 15:01:04 +00:00
|
|
|
/**
|
|
|
|
|
* Return the size of the given page, or 0 if it's nonexistent. This is an
|
|
|
|
|
* expensive parser function and can't be called too many times per page.
|
|
|
|
|
*
|
2011-05-17 22:03:20 +00:00
|
|
|
* @todo FIXME: Title::getLength() documentation claims that it adds things
|
2010-02-14 21:23:38 +00:00
|
|
|
* to the link cache, so the local cache here should be unnecessary, but
|
|
|
|
|
* in fact calling getLength() repeatedly for the same $page does seem to
|
2008-04-18 15:01:04 +00:00
|
|
|
* run one query for each call?
|
2012-02-01 20:53:38 +00:00
|
|
|
* @todo Document parameters
|
|
|
|
|
*
|
2011-02-08 23:18:13 +00:00
|
|
|
* @param $parser Parser
|
2013-01-15 21:38:29 +00:00
|
|
|
* @param $page String Name of page to check (Default: empty string)
|
|
|
|
|
* @param $raw String Should number be human readable with commas or just number
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return string
|
2008-04-18 15:01:04 +00:00
|
|
|
*/
|
|
|
|
|
static function pagesize( $parser, $page = '', $raw = null ) {
|
2010-02-11 14:57:43 +00:00
|
|
|
$title = Title::newFromText( $page );
|
2008-04-18 15:01:04 +00:00
|
|
|
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !is_object( $title ) ) {
|
2008-04-18 15:01:04 +00:00
|
|
|
return self::formatRaw( 0, $raw );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 21:02:59 +00:00
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $title );
|
|
|
|
|
$length = $rev ? $rev->getSize() : 0;
|
2008-04-18 15:01:04 +00:00
|
|
|
return self::formatRaw( $length, $raw );
|
|
|
|
|
}
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2009-01-08 23:21:06 +00:00
|
|
|
/**
|
2013-01-18 19:03:01 +00:00
|
|
|
* Returns the requested protection level for the current page
|
|
|
|
|
*
|
|
|
|
|
* @param Parser $parser
|
|
|
|
|
* @param string $type
|
|
|
|
|
* @param string $title
|
|
|
|
|
*
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2013-01-18 19:03:01 +00:00
|
|
|
static function protectionlevel( $parser, $type = '', $title = '' ) {
|
|
|
|
|
$titleObject = Title::newFromText( $title );
|
|
|
|
|
if ( !( $titleObject instanceof Title ) ) {
|
|
|
|
|
$titleObject = $parser->mTitle;
|
|
|
|
|
}
|
|
|
|
|
$restrictions = $titleObject->getRestrictions( strtolower( $type ) );
|
2009-01-08 23:21:06 +00:00
|
|
|
# Title::getRestrictions returns an array, its possible it may have
|
|
|
|
|
# multiple values in the future
|
|
|
|
|
return implode( $restrictions, ',' );
|
|
|
|
|
}
|
2008-04-18 15:01:04 +00:00
|
|
|
|
2011-07-11 18:05:32 +00:00
|
|
|
/**
|
|
|
|
|
* Gives language names.
|
|
|
|
|
* @param $parser Parser
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $code Language code (of which to get name)
|
|
|
|
|
* @param string $inLanguage Language code (in which to get name)
|
2011-07-11 18:05:32 +00:00
|
|
|
* @return String
|
|
|
|
|
*/
|
2012-02-27 11:59:24 +00:00
|
|
|
static function language( $parser, $code = '', $inLanguage = '' ) {
|
2011-07-11 12:23:39 +00:00
|
|
|
$code = strtolower( $code );
|
2012-02-27 11:59:24 +00:00
|
|
|
$inLanguage = strtolower( $inLanguage );
|
|
|
|
|
$lang = Language::fetchLanguageName( $code, $inLanguage );
|
2011-12-20 21:24:06 +00:00
|
|
|
return $lang !== '' ? $lang : wfBCP47( $code );
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|
2007-01-13 12:58:33 +00:00
|
|
|
|
2009-01-14 17:54:52 +00:00
|
|
|
/**
|
|
|
|
|
* Unicode-safe str_pad with the restriction that $length is forced to be <= 500
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return string
|
2011-08-01 15:40:02 +00:00
|
|
|
*/
|
2012-03-20 04:39:09 +00:00
|
|
|
static function pad( $parser, $string, $length, $padding = '0', $direction = STR_PAD_RIGHT ) {
|
|
|
|
|
$padding = $parser->killMarkers( $padding );
|
2009-06-08 16:53:39 +00:00
|
|
|
$lengthOfPadding = mb_strlen( $padding );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $lengthOfPadding == 0 ) {
|
|
|
|
|
return $string;
|
|
|
|
|
}
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2009-01-14 17:54:52 +00:00
|
|
|
# The remaining length to add counts down to 0 as padding is added
|
|
|
|
|
$length = min( $length, 500 ) - mb_strlen( $string );
|
2009-06-08 16:53:39 +00:00
|
|
|
# $finalPadding is just $padding repeated enough times so that
|
2009-01-14 17:54:52 +00:00
|
|
|
# mb_strlen( $string ) + mb_strlen( $finalPadding ) == $length
|
|
|
|
|
$finalPadding = '';
|
|
|
|
|
while ( $length > 0 ) {
|
|
|
|
|
# If $length < $lengthofPadding, truncate $padding so we get the
|
|
|
|
|
# exact length desired.
|
|
|
|
|
$finalPadding .= mb_substr( $padding, 0, $length );
|
|
|
|
|
$length -= $lengthOfPadding;
|
|
|
|
|
}
|
2009-06-08 16:53:39 +00:00
|
|
|
|
2009-01-14 17:54:52 +00:00
|
|
|
if ( $direction == STR_PAD_LEFT ) {
|
|
|
|
|
return $finalPadding . $string;
|
|
|
|
|
} else {
|
|
|
|
|
return $string . $finalPadding;
|
|
|
|
|
}
|
2006-08-21 11:07:58 +00:00
|
|
|
}
|
2007-01-13 12:58:33 +00:00
|
|
|
|
2009-01-14 17:54:52 +00:00
|
|
|
static function padleft( $parser, $string = '', $length = 0, $padding = '0' ) {
|
2012-03-20 04:39:09 +00:00
|
|
|
return self::pad( $parser, $string, $length, $padding, STR_PAD_LEFT );
|
2006-08-18 17:30:35 +00:00
|
|
|
}
|
2007-01-13 12:58:33 +00:00
|
|
|
|
2009-01-14 17:54:52 +00:00
|
|
|
static function padright( $parser, $string = '', $length = 0, $padding = '0' ) {
|
2012-03-20 04:39:09 +00:00
|
|
|
return self::pad( $parser, $string, $length, $padding );
|
2006-08-18 17:30:35 +00:00
|
|
|
}
|
2007-01-13 12:58:33 +00:00
|
|
|
|
2011-02-08 23:18:13 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $text
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2006-11-29 05:45:03 +00:00
|
|
|
static function anchorencode( $parser, $text ) {
|
2012-03-20 04:39:09 +00:00
|
|
|
$text = $parser->killMarkers( $text );
|
2013-03-27 16:53:14 +00:00
|
|
|
return (string)substr( $parser->guessSectionNameFromWikiText( $text ), 1 );
|
2006-08-30 07:51:44 +00:00
|
|
|
}
|
2006-10-31 13:25:47 +00:00
|
|
|
|
2006-11-29 05:45:03 +00:00
|
|
|
static function special( $parser, $text ) {
|
2011-04-17 11:31:11 +00:00
|
|
|
list( $page, $subpage ) = SpecialPageFactory::resolveAlias( $text );
|
2010-03-16 19:47:24 +00:00
|
|
|
if ( $page ) {
|
|
|
|
|
$title = SpecialPage::getTitleFor( $page, $subpage );
|
2012-04-05 17:22:34 +00:00
|
|
|
return $title->getPrefixedText();
|
2006-10-31 13:25:47 +00:00
|
|
|
} else {
|
2013-04-20 12:42:22 +00:00
|
|
|
// unknown special page, just use the given text as its title, if at all possible
|
|
|
|
|
$title = Title::makeTitleSafe( NS_SPECIAL, $text );
|
|
|
|
|
return $title ? $title->getPrefixedText() : self::special( $parser, 'Badtitle' );
|
2006-10-31 13:25:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2012-04-05 17:22:34 +00:00
|
|
|
static function speciale( $parser, $text ) {
|
|
|
|
|
return wfUrlencode( str_replace( ' ', '_', self::special( $parser, $text ) ) );
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-08 23:18:13 +00:00
|
|
|
/**
|
|
|
|
|
* @param $parser Parser
|
2013-03-11 17:15:01 +00:00
|
|
|
* @param string $text The sortkey to use
|
|
|
|
|
* @param string $uarg Either "noreplace" or "noerror" (in en)
|
2011-09-11 02:20:20 +00:00
|
|
|
* both suppress errors, and noreplace does nothing if
|
|
|
|
|
* a default sortkey already exists.
|
2011-02-08 23:18:13 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2011-09-11 20:32:58 +00:00
|
|
|
public static function defaultsort( $parser, $text, $uarg = '' ) {
|
|
|
|
|
static $magicWords = null;
|
|
|
|
|
if ( is_null( $magicWords ) ) {
|
|
|
|
|
$magicWords = new MagicWordArray( array( 'defaultsort_noerror', 'defaultsort_noreplace' ) );
|
|
|
|
|
}
|
|
|
|
|
$arg = $magicWords->matchStartToEnd( $uarg );
|
|
|
|
|
|
2006-12-29 10:39:35 +00:00
|
|
|
$text = trim( $text );
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( strlen( $text ) == 0 ) {
|
2008-11-02 14:21:04 +00:00
|
|
|
return '';
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2008-11-02 14:21:04 +00:00
|
|
|
$old = $parser->getCustomDefaultSort();
|
2011-09-11 20:32:58 +00:00
|
|
|
if ( $old === false || $arg !== 'defaultsort_noreplace' ) {
|
2011-09-11 02:20:20 +00:00
|
|
|
$parser->setDefaultSort( $text );
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $old === false || $old == $text || $arg ) {
|
2008-11-02 14:21:04 +00:00
|
|
|
return '';
|
2011-09-11 02:20:20 +00:00
|
|
|
} else {
|
2013-07-04 19:15:05 +00:00
|
|
|
$converter = $parser->getConverterLanguage()->getConverter();
|
2013-04-26 14:42:31 +00:00
|
|
|
return '<span class="error">' .
|
2013-06-15 14:13:35 +00:00
|
|
|
wfMessage( 'duplicate-defaultsort',
|
2013-07-04 19:15:05 +00:00
|
|
|
// Message should be parsed, but these params should only be escaped.
|
|
|
|
|
$converter->markNoConversion( wfEscapeWikiText( $old ) ),
|
|
|
|
|
$converter->markNoConversion( wfEscapeWikiText( $text ) )
|
2013-06-15 14:13:35 +00:00
|
|
|
)->inContentLanguage()->text() .
|
2013-04-26 14:42:31 +00:00
|
|
|
'</span>';
|
2011-09-11 02:20:20 +00:00
|
|
|
}
|
2006-12-29 10:39:35 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2011-01-23 13:09:15 +00:00
|
|
|
// Usage {{filepath|300}}, {{filepath|nowiki}}, {{filepath|nowiki|300}} or {{filepath|300|nowiki}}
|
2012-07-25 15:31:47 +00:00
|
|
|
// or {{filepath|300px}}, {{filepath|200x300px}}, {{filepath|nowiki|200x300px}}, {{filepath|200x300px|nowiki}}
|
2013-02-03 19:42:08 +00:00
|
|
|
public static function filepath( $parser, $name = '', $argA = '', $argB = '' ) {
|
2007-09-14 15:29:52 +00:00
|
|
|
$file = wfFindFile( $name );
|
2011-01-23 13:09:15 +00:00
|
|
|
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $argA == 'nowiki' ) {
|
2012-07-25 15:31:47 +00:00
|
|
|
// {{filepath: | option [| size] }}
|
|
|
|
|
$isNowiki = true;
|
|
|
|
|
$parsedWidthParam = $parser->parseWidthParam( $argB );
|
2011-01-23 13:09:15 +00:00
|
|
|
} else {
|
2012-07-25 15:31:47 +00:00
|
|
|
// {{filepath: [| size [|option]] }}
|
|
|
|
|
$parsedWidthParam = $parser->parseWidthParam( $argA );
|
2013-04-20 15:38:24 +00:00
|
|
|
$isNowiki = ( $argB == 'nowiki' );
|
2011-01-23 13:09:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $file ) {
|
2011-04-23 19:38:53 +00:00
|
|
|
$url = $file->getFullUrl();
|
2011-01-23 13:09:15 +00:00
|
|
|
|
2011-08-01 15:40:02 +00:00
|
|
|
// If a size is requested...
|
2012-07-25 15:31:47 +00:00
|
|
|
if ( count( $parsedWidthParam ) ) {
|
|
|
|
|
$mto = $file->transform( $parsedWidthParam );
|
2011-01-23 13:09:15 +00:00
|
|
|
// ... and we can
|
|
|
|
|
if ( $mto && !$mto->isError() ) {
|
|
|
|
|
// ... change the URL to point to a thumbnail.
|
2011-08-03 13:11:42 +00:00
|
|
|
$url = wfExpandUrl( $mto->getUrl(), PROTO_RELATIVE );
|
2011-01-23 13:09:15 +00:00
|
|
|
}
|
|
|
|
|
}
|
2012-07-25 15:31:47 +00:00
|
|
|
if ( $isNowiki ) {
|
2008-12-23 11:59:37 +00:00
|
|
|
return array( $url, 'nowiki' => true );
|
2007-09-14 15:29:52 +00:00
|
|
|
}
|
|
|
|
|
return $url;
|
|
|
|
|
} else {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-01-09 07:13:54 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parser function to extension tag adaptor
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return string
|
2008-01-09 07:13:54 +00:00
|
|
|
*/
|
|
|
|
|
public static function tagObj( $parser, $frame, $args ) {
|
|
|
|
|
if ( !count( $args ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
$tagName = strtolower( trim( $frame->expand( array_shift( $args ) ) ) );
|
2008-01-16 07:46:27 +00:00
|
|
|
|
|
|
|
|
if ( count( $args ) ) {
|
|
|
|
|
$inner = $frame->expand( array_shift( $args ) );
|
|
|
|
|
} else {
|
|
|
|
|
$inner = null;
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-09 07:13:54 +00:00
|
|
|
$stripList = $parser->getStripList();
|
|
|
|
|
if ( !in_array( $tagName, $stripList ) ) {
|
2008-04-14 07:45:50 +00:00
|
|
|
return '<span class="error">' .
|
2012-08-19 23:05:20 +00:00
|
|
|
wfMessage( 'unknown_extension_tag', $tagName )->inContentLanguage()->text() .
|
2008-01-09 07:13:54 +00:00
|
|
|
'</span>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$attributes = array();
|
|
|
|
|
foreach ( $args as $arg ) {
|
2008-01-26 05:40:51 +00:00
|
|
|
$bits = $arg->splitArg();
|
|
|
|
|
if ( strval( $bits['index'] ) === '' ) {
|
2008-10-06 07:37:37 +00:00
|
|
|
$name = trim( $frame->expand( $bits['name'], PPFrame::STRIP_COMMENTS ) );
|
2008-01-26 05:40:51 +00:00
|
|
|
$value = trim( $frame->expand( $bits['value'] ) );
|
2008-01-19 09:03:45 +00:00
|
|
|
if ( preg_match( '/^(?:["\'](.+)["\']|""|\'\')$/s', $value, $m ) ) {
|
|
|
|
|
$value = isset( $m[1] ) ? $m[1] : '';
|
2008-01-09 07:13:54 +00:00
|
|
|
}
|
2008-01-16 07:46:27 +00:00
|
|
|
$attributes[$name] = $value;
|
|
|
|
|
}
|
2008-01-09 07:13:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$params = array(
|
|
|
|
|
'name' => $tagName,
|
|
|
|
|
'inner' => $inner,
|
2008-01-19 09:03:45 +00:00
|
|
|
'attributes' => $attributes,
|
|
|
|
|
'close' => "</$tagName>",
|
2008-01-09 07:13:54 +00:00
|
|
|
);
|
|
|
|
|
return $parser->extensionSubstitution( $params, $frame );
|
|
|
|
|
}
|
2013-10-29 21:02:59 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Fetched the current revision of the given title and return this.
|
|
|
|
|
* Will increment the expensive function count and
|
|
|
|
|
* add a template link to get the value refreshed on changes.
|
|
|
|
|
* For a given title, which is equal to the current parser title,
|
|
|
|
|
* the revision object from the parser is used, when that is the current one
|
|
|
|
|
*
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title Title
|
|
|
|
|
* @return Revision
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
private static function getCachedRevisionObject( $parser, $title = null ) {
|
|
|
|
|
static $cache = array();
|
|
|
|
|
|
|
|
|
|
if ( is_null( $title ) ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Use the revision from the parser itself, when param is the current page
|
|
|
|
|
// and the revision is the current one
|
|
|
|
|
if ( $title->equals( $parser->getTitle() ) ) {
|
|
|
|
|
$parserRev = $parser->getRevisionObject();
|
|
|
|
|
if ( $parserRev && $parserRev->isCurrent() ) {
|
|
|
|
|
// force reparse after edit with vary-revision flag
|
|
|
|
|
$parser->getOutput()->setFlag( 'vary-revision' );
|
|
|
|
|
wfDebug( __METHOD__ . ": use current revision from parser, setting vary-revision...\n" );
|
|
|
|
|
return $parserRev;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Normalize name for cache
|
|
|
|
|
$page = $title->getPrefixedDBkey();
|
|
|
|
|
|
|
|
|
|
if ( array_key_exists( $page, $cache ) ) { // cache contains null values
|
|
|
|
|
return $cache[$page];
|
|
|
|
|
}
|
|
|
|
|
if ( $parser->incrementExpensiveFunctionCount() ) {
|
|
|
|
|
$rev = Revision::newFromTitle( $title, false, Revision::READ_NORMAL );
|
|
|
|
|
$pageID = $rev ? $rev->getPage() : 0;
|
|
|
|
|
$revID = $rev ? $rev->getId() : 0;
|
|
|
|
|
$cache[$page] = $rev; // maybe null
|
|
|
|
|
|
|
|
|
|
// Register dependency in templatelinks
|
|
|
|
|
$parser->getOutput()->addTemplate( $title, $pageID, $revID );
|
|
|
|
|
|
|
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
$cache[$page] = null;
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the pageid of a specified page
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the pageid from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function pageid( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// Use title from parser to have correct pageid after edit
|
|
|
|
|
if ( $t->equals( $parser->getTitle() ) ) {
|
|
|
|
|
$t = $parser->getTitle();
|
|
|
|
|
}
|
|
|
|
|
// fetch pageid from cache/database and return the value
|
|
|
|
|
$pageid = $t->getArticleID();
|
|
|
|
|
return $pageid ? $pageid : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the id from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the id from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionid( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? $rev->getId() : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the day from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the day from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionday( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? MWTimestamp::getLocalInstance( $rev->getTimestamp() )->format( 'j' ) : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the day with leading zeros from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the day from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionday2( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? MWTimestamp::getLocalInstance( $rev->getTimestamp() )->format( 'd' ) : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the month with leading zeros from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the month from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionmonth( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? MWTimestamp::getLocalInstance( $rev->getTimestamp() )->format( 'm' ) : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the month from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the month from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionmonth1( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? MWTimestamp::getLocalInstance( $rev->getTimestamp() )->format( 'n' ) : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the year from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the year from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionyear( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? MWTimestamp::getLocalInstance( $rev->getTimestamp() )->format( 'Y' ) : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the timestamp from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the timestamp from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisiontimestamp( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? MWTimestamp::getLocalInstance( $rev->getTimestamp() )->format( 'YmdHis' ) : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the user from the last revision of a specified page.
|
|
|
|
|
* @param $parser Parser
|
|
|
|
|
* @param $title string Title to get the user from
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function revisionuser( $parser, $title = null ) {
|
|
|
|
|
$t = Title::newFromText( $title );
|
|
|
|
|
if ( is_null( $t ) ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
// fetch revision from cache/database and return the value
|
|
|
|
|
$rev = self::getCachedRevisionObject( $parser, $t );
|
|
|
|
|
return $rev ? $rev->getUserText() : '';
|
|
|
|
|
}
|
2014-01-02 18:27:29 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the sources of any cascading protection acting on a specified page.
|
|
|
|
|
* Pages will not return their own title unless they transclude themselves.
|
|
|
|
|
* This is an expensive parser function and can't be called too many times per page.
|
|
|
|
|
*
|
|
|
|
|
* @param Parser $parser
|
|
|
|
|
* @param string $title
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
* @since 1.23
|
|
|
|
|
*/
|
|
|
|
|
public static function cascadingsources( $parser, $title = '' ) {
|
|
|
|
|
$titleObject = Title::newFromText( $title );
|
|
|
|
|
if ( !( $titleObject instanceof Title ) ) {
|
|
|
|
|
$titleObject = $parser->mTitle;
|
|
|
|
|
}
|
|
|
|
|
$names = array();
|
|
|
|
|
if ( $parser->incrementExpensiveFunctionCount() ) {
|
|
|
|
|
$sources = $titleObject->getCascadeProtectionSources();
|
|
|
|
|
foreach ( $sources[0] as $sourceTitle ) {
|
|
|
|
|
$names[] = $sourceTitle->getText();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return implode( $names, '|' );
|
|
|
|
|
}
|
|
|
|
|
|
2006-07-03 11:07:00 +00:00
|
|
|
}
|