MediaWiki  REL1_31
CoreTagHooks.php
Go to the documentation of this file.
1 <?php
28 class CoreTagHooks {
33  public static function register( $parser ) {
35  $parser->setHook( 'pre', [ __CLASS__, 'pre' ] );
36  $parser->setHook( 'nowiki', [ __CLASS__, 'nowiki' ] );
37  $parser->setHook( 'gallery', [ __CLASS__, 'gallery' ] );
38  $parser->setHook( 'indicator', [ __CLASS__, 'indicator' ] );
39  if ( $wgRawHtml ) {
40  $parser->setHook( 'html', [ __CLASS__, 'html' ] );
41  }
42  }
43 
54  public static function pre( $text, $attribs, $parser ) {
55  // Backwards-compatibility hack
56  $content = StringUtils::delimiterReplace( '<nowiki>', '</nowiki>', '$1', $text, 'i' );
57 
59  // We need to let both '"' and '&' through,
60  // for strip markers and entities respectively.
61  $content = str_replace(
62  [ '>', '<' ],
63  [ '&gt;', '&lt;' ],
64  $content
65  );
66  return Html::rawElement( 'pre', $attribs, $content );
67  }
68 
84  public static function html( $content, $attributes, $parser ) {
86  if ( $wgRawHtml ) {
87  if ( $parser->getOptions()->getAllowUnsafeRawHtml() ) {
88  return [ $content, 'markerType' => 'nowiki' ];
89  } else {
90  // In a system message where raw html is
91  // not allowed (but it is allowed in other
92  // contexts).
93  return Html::rawElement(
94  'span',
95  [ 'class' => 'error' ],
96  // Using ->text() not ->parse() as
97  // a paranoia measure against a loop.
98  wfMessage( 'rawhtml-notallowed' )->escaped()
99  );
100  }
101  } else {
102  throw new MWException( '<html> extension tag encountered unexpectedly' );
103  }
104  }
105 
118  public static function nowiki( $content, $attributes, $parser ) {
119  $content = strtr( $content, [
120  // lang converter
121  '-{' => '-&#123;',
122  '}-' => '&#125;-',
123  // html tags
124  '<' => '&lt;',
125  '>' => '&gt;'
126  // Note: Both '"' and '&' are not converted.
127  // This allows strip markers and entities through.
128  ] );
129  return [ $content, 'markerType' => 'nowiki' ];
130  }
131 
147  public static function gallery( $content, $attributes, $parser ) {
148  return $parser->renderImageGallery( $content, $attributes );
149  }
150 
162  public static function indicator( $content, array $attributes, Parser $parser, PPFrame $frame ) {
163  if ( !isset( $attributes['name'] ) || trim( $attributes['name'] ) === '' ) {
164  return '<span class="error">' .
165  wfMessage( 'invalid-indicator-name' )->inContentLanguage()->parse() .
166  '</span>';
167  }
168 
169  $parser->getOutput()->setIndicator(
170  trim( $attributes['name'] ),
171  Parser::stripOuterParagraph( $parser->recursiveTagParseFully( $content, $frame ) )
172  );
173 
174  return '';
175  }
176 }
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
array
the array() calling protocol came about after MediaWiki 1.4rc1.
CoreTagHooks
Various tag hooks, registered in Parser::firstCallInit()
Definition: CoreTagHooks.php:28
CoreTagHooks\indicator
static indicator( $content, array $attributes, Parser $parser, PPFrame $frame)
XML-style tag for page status indicators: icons (or short text snippets) usually displayed in the top...
Definition: CoreTagHooks.php:162
CoreTagHooks\nowiki
static nowiki( $content, $attributes, $parser)
Core parser tag hook function for 'nowiki'.
Definition: CoreTagHooks.php:118
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
CoreTagHooks\gallery
static gallery( $content, $attributes, $parser)
Core parser tag hook function for 'gallery'.
Definition: CoreTagHooks.php:147
$wgRawHtml
$wgRawHtml
Allow raw, unchecked HTML in "<html>...</html>" sections.
Definition: DefaultSettings.php:4340
MWException
MediaWiki exception.
Definition: MWException.php:26
$parser
do that in ParserLimitReportFormat instead $parser
Definition: hooks.txt:2603
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:95
CoreTagHooks\html
static html( $content, $attributes, $parser)
Core parser tag hook function for 'html', used only when $wgRawHtml is enabled.
Definition: CoreTagHooks.php:84
$attribs
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition: hooks.txt:2014
Sanitizer\validateTagAttributes
static validateTagAttributes( $attribs, $element)
Take an array of attribute names and values and normalize or discard illegal values for the given ele...
Definition: Sanitizer.php:772
PPFrame
Definition: Preprocessor.php:166
Parser
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
Definition: Parser.php:70
Parser\stripOuterParagraph
static stripOuterParagraph( $html)
Strip outer.
Definition: Parser.php:6141
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
StringUtils\delimiterReplace
static delimiterReplace( $startDelim, $endDelim, $replace, $subject, $flags='')
Perform an operation equivalent to preg_replace() with flags.
Definition: StringUtils.php:245
CoreTagHooks\pre
static pre( $text, $attribs, $parser)
Core parser tag hook function for 'pre'.
Definition: CoreTagHooks.php:54