fix synxtax
[lhc/web/wiklou.git] / includes / CoreParserFunctions.php
index f22f61e..61dbafe 100644 (file)
@@ -2,9 +2,17 @@
 
 /**
  * Various core parser functions, registered in Parser::firstCallInit()
+ * @addtogroup Parser
  */
-
 class CoreParserFunctions {
+       static function intFunction( $parser, $part1 = '' /*, ... */ ) {
+               if ( strval( $part1 ) !== '' ) {
+                       $args = array_slice( func_get_args(), 2 );
+                       return wfMsgReal( $part1, $args, true );
+               } else {
+                       return array( 'found' => false );
+               }
+       }
 
        static function ns( $parser, $part1 = '' ) {
                global $wgContLang;
@@ -43,12 +51,20 @@ class CoreParserFunctions {
 
        static function lc( $parser, $s = '' ) {
                global $wgContLang;
-               return $wgContLang->lc( $s );
+               if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) {
+                       return $parser->markerSkipCallback( $s, array( $wgContLang, 'lc' ) );
+               } else {
+                       return $wgContLang->lc( $s );
+               }
        }
 
        static function uc( $parser, $s = '' ) {
                global $wgContLang;
-               return $wgContLang->uc( $s );
+               if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) {
+                       return $parser->markerSkipCallback( $s, array( $wgContLang, 'uc' ) );
+               } else {
+                       return $wgContLang->uc( $s );
+               }
        }
 
        static function localurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getLocalURL', $s, $arg ); }
@@ -57,7 +73,6 @@ class CoreParserFunctions {
        static function fullurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeFullURL', $s, $arg ); }
 
        static function urlFunction( $func, $s = '', $arg = null ) {
-               $found = false;
                $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
@@ -71,40 +86,44 @@ class CoreParserFunctions {
                        } else {
                                $text = $title->$func();
                        }
-                       $found = true;
-               }
-               if ( $found ) {
                        return $text;
                } else {
                        return array( 'found' => false );
                }
        }
 
-       function formatNum( $parser, $num = '' ) {
+       static function formatNum( $parser, $num = '' ) {
                return $parser->getFunctionLang()->formatNum( $num );
        }
-       
-       function grammar( $parser, $case = '', $word = '' ) {
+
+       static function grammar( $parser, $case = '', $word = '' ) {
                return $parser->getFunctionLang()->convertGrammar( $word, $case );
        }
 
-       function plural( $parser, $text = '', $arg0 = null, $arg1 = null, $arg2 = null, $arg3 = null, $arg4 = null ) {
-               return $parser->getFunctionLang()->convertPlural( $text, $arg0, $arg1, $arg2, $arg3, $arg4 );
+       static function plural( $parser, $text = '') {
+               $forms = array_slice( func_get_args(), 2);
+               $text = $parser->getFunctionLang()->parseFormattedNumber( $text );
+               return $parser->getFunctionLang()->convertPlural( $text, $forms );
        }
 
-       function displaytitle( $parser, $param = '' ) {
-               $parserOptions = new ParserOptions;
-               $local_parser = clone $parser;
-               $t2 = $local_parser->parse ( $param, $parser->mTitle, $parserOptions, false );
-               $parser->mOutput->mHTMLtitle = $t2->GetText();
-
-               # Add subtitle
-               $t = $parser->mTitle->getPrefixedText();
-               $parser->mOutput->mSubtitle .= wfMsg('displaytitle', $t);
+       /**
+        * Override the title of the page when viewed,
+        * provided we've been given a title which
+        * will normalise to the canonical title
+        *
+        * @param Parser $parser Parent parser
+        * @param string $text Desired title text
+        * @return string
+        */
+       static function displaytitle( $parser, $text = '' ) {
+               $text = trim( Sanitizer::decodeCharReferences( $text ) );
+               $title = Title::newFromText( $text );
+               if( $title instanceof Title && $title->getFragment() == '' && $title->equals( $parser->mTitle ) )
+                       $parser->mOutput->setDisplayTitle( $text );
                return '';
        }
 
-       function isRaw( $param ) {
+       static function isRaw( $param ) {
                static $mwRaw;
                if ( !$mwRaw ) {
                        $mwRaw =& MagicWord::get( 'rawsuffix' );
@@ -116,23 +135,24 @@ class CoreParserFunctions {
                }
        }
 
-       function statisticsFunction( $func, $raw = null ) {
+       static function statisticsFunction( $func, $raw = null ) {
                if ( self::isRaw( $raw ) ) {
-                       return call_user_func( $func );
+                       return call_user_func( array( 'SiteStats', $func ) );
                } else {
                        global $wgContLang;
-                       return $wgContLang->formatNum( call_user_func( $func ) );
+                       return $wgContLang->formatNum( call_user_func( array( 'SiteStats', $func ) ) );
                }
        }
 
-       function numberofpages( $parser, $raw = null ) { return self::statisticsFunction( 'wfNumberOfPages', $raw ); }
-       function numberofusers( $parser, $raw = null ) { return self::statisticsFunction( 'wfNumberOfUsers', $raw ); }
-       function numberofarticles( $parser, $raw = null ) { return self::statisticsFunction( 'wfNumberOfArticles', $raw ); }
-       function numberoffiles( $parser, $raw = null ) { return self::statisticsFunction( 'wfNumberOfFiles', $raw ); }
-       function numberofadmins( $parser, $raw = null ) { return self::statisticsFunction( 'wfNumberOfAdmins', $raw ); }
+       static function numberofpages( $parser, $raw = null ) { return self::statisticsFunction( 'pages', $raw ); }
+       static function numberofusers( $parser, $raw = null ) { return self::statisticsFunction( 'users', $raw ); }
+       static function numberofarticles( $parser, $raw = null ) { return self::statisticsFunction( 'articles', $raw ); }
+       static function numberoffiles( $parser, $raw = null ) { return self::statisticsFunction( 'images', $raw ); }
+       static function numberofadmins( $parser, $raw = null ) { return self::statisticsFunction( 'admins', $raw ); }
+       static function numberofedits( $parser, $raw = null ) { return self::statisticsFunction( 'edits', $raw ); }
 
-       function pagesinnamespace( $parser, $namespace = 0, $raw = null ) {
-               $count = wfPagesInNs( intval( $namespace ) );
+       static function pagesinnamespace( $parser, $namespace = 0, $raw = null ) {
+               $count = SiteStats::pagesInNs( intval( $namespace ) );
                if ( self::isRaw( $raw ) ) {
                        global $wgContLang;
                        return $wgContLang->formatNum( $count );
@@ -141,20 +161,108 @@ class CoreParserFunctions {
                }
        }
 
-       function language( $parser, $arg = '' ) {
+       static function language( $parser, $arg = '' ) {
                global $wgContLang;
                $lang = $wgContLang->getLanguageName( strtolower( $arg ) );
                return $lang != '' ? $lang : $arg;
        }
-       
-       function padleft( $parser, $string = '', $length = 0, $char = 0 ) {
-               return str_pad( $string, $length, (string)$char, STR_PAD_LEFT );
+
+       static function pad( $string = '', $length = 0, $char = 0, $direction = STR_PAD_RIGHT ) {
+               $length = min( max( $length, 0 ), 500 );
+               $char = substr( $char, 0, 1 );
+               return ( $string !== '' && (int)$length > 0 && strlen( trim( (string)$char ) ) > 0 )
+                               ? str_pad( $string, $length, (string)$char, $direction )
+                               : $string;
+       }
+
+       static function padleft( $parser, $string = '', $length = 0, $char = 0 ) {
+               return self::pad( $string, $length, $char, STR_PAD_LEFT );
+       }
+
+       static function padright( $parser, $string = '', $length = 0, $char = 0 ) {
+               return self::pad( $string, $length, $char );
+       }
+
+       static function anchorencode( $parser, $text ) {
+               $a = urlencode( $text );
+               $a = strtr( $a, array( '%' => '.', '+' => '_' ) );
+               # leave colons alone, however
+               $a = str_replace( '.3A', ':', $a );
+               return $a;
+       }
+
+       static function special( $parser, $text ) {
+               $title = SpecialPage::getTitleForAlias( $text );
+               if ( $title ) {
+                       return $title->getPrefixedText();
+               } else {
+                       return wfMsgForContent( 'nosuchspecialpage' );
+               }
        }
        
-       function padright( $parser, $string = '', $length = 0, $char = 0 ) {
-               return str_pad( $string, $length, (string)$char, STR_PAD_RIGHT );
+       public static function defaultsort( $parser, $text ) {
+               $text = trim( $text );
+               if( strlen( $text ) > 0 )
+                       $parser->setDefaultSort( $text );
+               return '';
        }
        
+       public static function filepath( $parser, $name='', $option='' ) {
+               $file = wfFindFile( $name );
+               if( $file ) {
+                       $url = $file->getFullUrl();
+                       if( $option == 'nowiki' ) {
+                               return "<nowiki>$url</nowiki>";
+                       }
+                       return $url;
+               } else {
+                       return '';
+               }
+       }
+
+       /**
+        * Parser function to extension tag adaptor
+        */
+       public static function tagObj( $parser, $frame, $args ) {
+               $xpath = false;
+               if ( !count( $args ) ) {
+                       return '';
+               }
+               $tagName = strtolower( trim( $frame->expand( array_shift( $args ) ) ) );
+
+               if ( count( $args ) ) {
+                       $inner = $frame->expand( array_shift( $args ) );
+               } else {
+                       $inner = null;
+               }
+
+               $stripList = $parser->getStripList();
+               if ( !in_array( $tagName, $stripList ) ) {
+                       return '<span class="error">' . 
+                               wfMsg( 'unknown_extension_tag', $tagName ) . 
+                               '</span>';
+               }
+
+               $attributes = array();
+               foreach ( $args as $arg ) {
+                       $bits = $arg->splitArg();
+                       if ( strval( $bits['index'] ) === '' ) {
+                               $name = $frame->expand( $bits['name'], PPFrame::STRIP_COMMENTS );
+                               $value = trim( $frame->expand( $bits['value'] ) );
+                               if ( preg_match( '/^(?:["\'](.+)["\']|""|\'\')$/s', $value, $m ) ) {
+                                       $value = isset( $m[1] ) ? $m[1] : '';
+                               }
+                               $attributes[$name] = $value;
+                       }
+               }
+
+               $params = array(
+                       'name' => $tagName,
+                       'inner' => $inner,
+                       'attributes' => $attributes,
+                       'close' => "</$tagName>",
+               );
+               return $parser->extensionSubstitution( $params, $frame );
+       }
 }
 
-?>