MediaWiki  1.33.0
CoreTagHooks.php
Go to the documentation of this file.
1 <?php
28 class CoreTagHooks {
33  public static function register( $parser ) {
34  global $wgRawHtml;
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 
58  public static function pre( $text, $attribs, $parser ) {
59  // Backwards-compatibility hack
60  $content = StringUtils::delimiterReplace( '<nowiki>', '</nowiki>', '$1', $text, 'i' );
61 
62  $attribs = Sanitizer::validateTagAttributes( $attribs, 'pre' );
63  // We need to let both '"' and '&' through,
64  // for strip markers and entities respectively.
65  $content = str_replace(
66  [ '>', '<' ],
67  [ '&gt;', '&lt;' ],
68  $content
69  );
70  return Html::rawElement( 'pre', $attribs, $content );
71  }
72 
89  public static function html( $content, $attributes, $parser ) {
90  global $wgRawHtml;
91  if ( $wgRawHtml ) {
92  if ( $parser->getOptions()->getAllowUnsafeRawHtml() ) {
93  return [ $content, 'markerType' => 'nowiki' ];
94  } else {
95  // In a system message where raw html is
96  // not allowed (but it is allowed in other
97  // contexts).
98  return Html::rawElement(
99  'span',
100  [ 'class' => 'error' ],
101  // Using ->text() not ->parse() as
102  // a paranoia measure against a loop.
103  wfMessage( 'rawhtml-notallowed' )->escaped()
104  );
105  }
106  } else {
107  throw new MWException( '<html> extension tag encountered unexpectedly' );
108  }
109  }
110 
127  public static function nowiki( $content, $attributes, $parser ) {
128  $content = strtr( $content, [
129  // lang converter
130  '-{' => '-&#123;',
131  '}-' => '&#125;-',
132  // html tags
133  '<' => '&lt;',
134  '>' => '&gt;'
135  // Note: Both '"' and '&' are not converted.
136  // This allows strip markers and entities through.
137  ] );
138  return [ $content, 'markerType' => 'nowiki' ];
139  }
140 
156  public static function gallery( $content, $attributes, $parser ) {
157  return $parser->renderImageGallery( $content, $attributes );
158  }
159 
171  public static function indicator( $content, array $attributes, Parser $parser, PPFrame $frame ) {
172  if ( !isset( $attributes['name'] ) || trim( $attributes['name'] ) === '' ) {
173  return '<span class="error">' .
174  wfMessage( 'invalid-indicator-name' )->inContentLanguage()->parse() .
175  '</span>';
176  }
177 
178  $parser->getOutput()->setIndicator(
179  trim( $attributes['name'] ),
180  Parser::stripOuterParagraph( $parser->recursiveTagParseFully( $content, $frame ) )
181  );
182 
183  return '';
184  }
185 }
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:171
CoreTagHooks\nowiki
static nowiki( $content, $attributes, $parser)
Core parser tag hook function for 'nowiki'.
Definition: CoreTagHooks.php:127
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:35
CoreTagHooks\gallery
static gallery( $content, $attributes, $parser)
Core parser tag hook function for 'gallery'.
Definition: CoreTagHooks.php:156
$wgRawHtml
$wgRawHtml
Allow raw, unchecked HTML in "<html>...</html>" sections.
Definition: DefaultSettings.php:4250
MWException
MediaWiki exception.
Definition: MWException.php:26
$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:1985
$parser
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition: hooks.txt:1802
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
CoreTagHooks\html
static html( $content, $attributes, $parser)
Core parser tag hook function for 'html', used only when $wgRawHtml is enabled.
Definition: CoreTagHooks.php:89
PPFrame
Definition: Preprocessor.php:166
StringUtils\delimiterReplace
static delimiterReplace( $startDelim, $endDelim, $replace, $subject, $flags='')
Perform an operation equivalent to preg_replace() with flags.
Definition: StringUtils.php:245
$content
$content
Definition: pageupdater.txt:72
CoreTagHooks\pre
static pre( $text, $attribs, $parser)
Core parser tag hook function for 'pre'.
Definition: CoreTagHooks.php:58
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 use $formDescriptor instead 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