36 $this->data[
'namespace_urls'] = $this->data[
'content_navigation'][
'namespaces'];
37 $this->data[
'view_urls'] = $this->data[
'content_navigation'][
'views'];
38 $this->data[
'action_urls'] = $this->data[
'content_navigation'][
'actions'];
39 $this->data[
'variant_urls'] = $this->data[
'content_navigation'][
'variants'];
42 if ( $this->config->get(
'VectorUseIconWatch' ) ) {
43 $mode = $this->
getSkin()->getUser()->isWatched( $this->
getSkin()->getRelevantTitle() )
47 if ( isset( $this->data[
'action_urls'][$mode] ) ) {
48 $this->data[
'view_urls'][$mode] = $this->data[
'action_urls'][$mode];
49 unset( $this->data[
'action_urls'][$mode] );
54 if ( $this->data[
'rtl'] ) {
55 $this->data[
'view_urls'] =
56 array_reverse( $this->data[
'view_urls'] );
57 $this->data[
'namespace_urls'] =
58 array_reverse( $this->data[
'namespace_urls'] );
59 $this->data[
'personal_urls'] =
60 array_reverse( $this->data[
'personal_urls'] );
63 $this->data[
'pageLanguage'] =
64 $this->
getSkin()->getTitle()->getPageViewLanguage()->getHtmlCode();
67 $this->
html(
'headelement' );
69 <div
id=
"mw-page-base" class=
"noprint"></div>
70 <div
id=
"mw-head-base" class=
"noprint"></div>
71 <div
id=
"content" class=
"mw-body" role=
"main">
75 if ( $this->data[
'sitenotice'] ) {
77 <div
id=
"siteNotice" class=
"mw-body-content"><?php $this->
html(
'sitenotice' ) ?></div>
82 if ( is_callable( [ $this,
'getIndicators' ] ) ) {
86 if ( $this->data[
'title'] !=
'' ) {
88 <h1
id=
"firstHeading" class=
"firstHeading" lang=
"<?php $this->text( 'pageLanguage' ); ?>"><?php
89 $this->
html(
'title' )
93 <?php $this->
html(
'prebodyhtml' ) ?>
94 <div
id=
"bodyContent" class=
"mw-body-content">
96 if ( $this->data[
'isarticle'] ) {
98 <div
id=
"siteSub" class=
"noprint"><?php $this->
msg(
'tagline' ) ?></div>
102 <div
id=
"contentSub"<?php $this->
html(
'userlangattributes' ) ?>><?php
103 $this->
html(
'subtitle' )
106 if ( $this->data[
'undelete'] ) {
108 <div
id=
"contentSub2"><?php $this->
html(
'undelete' ) ?></div>
113 if ( $this->data[
'newtalk'] ) {
115 <div
class=
"usermessage"><?php $this->
html(
'newtalk' ) ?></div>
119 <div
id=
"jump-to-nav" class=
"mw-jump">
120 <?php $this->
msg(
'jumpto' ) ?>
121 <a
href=
"#mw-head"><?php
122 $this->
msg(
'jumptonavigation' )
123 ?></a><?php $this->
msg(
'comma-separator' ) ?>
124 <a
href=
"#p-search"><?php $this->
msg(
'jumptosearch' ) ?></a>
127 $this->
html(
'bodycontent' );
129 if ( $this->data[
'printfooter'] ) {
131 <div
class=
"printfooter">
132 <?php $this->
html(
'printfooter' ); ?>
137 if ( $this->data[
'catlinks'] ) {
138 $this->
html(
'catlinks' );
141 if ( $this->data[
'dataAfterContent'] ) {
142 $this->
html(
'dataAfterContent' );
145 <div
class=
"visualClear"></div>
146 <?php $this->
html(
'debughtml' ); ?>
149 <div
id=
"mw-navigation">
150 <h2><?php $this->
msg(
'navigation-heading' ) ?></h2>
154 <div
id=
"left-navigation">
157 <div
id=
"right-navigation">
162 <div
id=
"p-logo" role=
"banner"><a
class=
"mw-wiki-logo" href=
"<?php
163 echo htmlspecialchars( $this->data['nav_urls']['mainpage']['href'] )
170 <div
id=
"footer" role=
"contentinfo"<?php $this->
html(
'userlangattributes' ) ?>>
174 <ul
id=
"footer-<?php echo $category ?>">
176 foreach ( $links as
$link ) {
178 <li
id=
"footer-<?php echo $category ?>-<?php echo $link ?>"><?php $this->
html( $link ) ?></li>
187 if ( count( $footericons ) > 0 ) {
189 <ul
id=
"footer-icons" class=
"noprint">
191 foreach ( $footericons as $blockName => $footerIcons ) {
193 <li
id=
"footer-<?php echo htmlspecialchars( $blockName ); ?>ico">
195 foreach ( $footerIcons as $icon ) {
196 echo $this->
getSkin()->makeFooterIcon( $icon );
207 <div
style=
"clear:both"></div>
223 if ( !isset( $portals[
'SEARCH'] ) ) {
224 $portals[
'SEARCH'] =
true;
226 if ( !isset( $portals[
'TOOLBOX'] ) ) {
227 $portals[
'TOOLBOX'] =
true;
229 if ( !isset( $portals[
'LANGUAGES'] ) ) {
230 $portals[
'LANGUAGES'] =
true;
233 foreach ( $portals as $name => $content ) {
234 if ( $content ===
false ) {
248 if ( $this->data[
'language_urls'] !==
false ) {
249 $this->
renderPortal(
'lang', $this->data[
'language_urls'],
'otherlanguages' );
265 protected function renderPortal( $name, $content, $msg =
null, $hook =
null ) {
266 if ( $msg ===
null ) {
270 $labelId = Sanitizer::escapeId(
"p-$name-label" );
272 <div
class=
"portal" role=
"navigation" id=
'<?php
273 echo Sanitizer::escapeId( "p-$name" )
276 ?> aria-labelledby=
'<?php echo $labelId ?>'>
277 <h3<?php $this->
html(
'userlangattributes' ) ?>
id=
'<?php echo $labelId ?>'><?php
278 echo htmlspecialchars( $msgObj->exists() ? $msgObj->text() : $msg );
283 if ( is_array( $content ) ) {
287 foreach ( $content as $key => $val ) {
290 if ( $hook !==
null ) {
293 Hooks::run( $hook, [ &$skin,
true ] );
319 if ( !is_array( $elements ) ) {
320 $elements = [ $elements ];
322 } elseif ( $this->data[
'rtl'] ) {
323 $elements = array_reverse( $elements );
326 foreach ( $elements as $name => $element ) {
327 switch ( $element ) {
330 <div
id=
"p-namespaces" role=
"navigation" class=
"vectorTabs<?php
331 if ( count( $this->data['namespace_urls'] ) == 0 ) {
332 echo ' emptyPortlet';
334 ?>" aria-labelledby=
"p-namespaces-label">
335 <h3
id=
"p-namespaces-label"><?php $this->
msg(
'namespaces' ) ?></h3>
336 <ul<?php $this->
html(
'userlangattributes' ) ?>>
338 foreach ( $this->data[
'namespace_urls'] as $key => $item ) {
339 echo
"\t\t\t\t\t\t\t" . $this->
makeListItem( $key, $item, [
340 'vector-wrap' =>
true,
350 <div
id=
"p-variants" role=
"navigation" class=
"vectorMenu<?php
351 if ( count( $this->data['variant_urls'] ) == 0 ) {
352 echo ' emptyPortlet';
354 ?>" aria-labelledby=
"p-variants-label">
357 $variantLabel = $this->
getMsg(
'variants' )->text();
358 foreach ( $this->data[
'variant_urls'] as $item ) {
359 if ( isset( $item[
'class'] ) && stripos( $item[
'class'],
'selected' ) !==
false ) {
360 $variantLabel = $item[
'text'];
365 <h3
id=
"p-variants-label">
366 <span><?php echo htmlspecialchars( $variantLabel ) ?></span>
372 foreach ( $this->data[
'variant_urls'] as $key => $item ) {
373 echo
"\t\t\t\t\t\t\t\t" . $this->
makeListItem( $key, $item ) .
"\n";
383 <div
id=
"p-views" role=
"navigation" class=
"vectorTabs<?php
384 if ( count( $this->data['view_urls'] ) == 0 ) {
385 echo ' emptyPortlet';
387 ?>" aria-labelledby=
"p-views-label">
388 <h3
id=
"p-views-label"><?php $this->
msg(
'views' ) ?></h3>
389 <ul<?php $this->
html(
'userlangattributes' ) ?>>
391 foreach ( $this->data[
'view_urls'] as $key => $item ) {
392 echo
"\t\t\t\t\t\t\t" . $this->
makeListItem( $key, $item, [
393 'vector-wrap' =>
true,
394 'vector-collapsible' =>
true,
404 <div
id=
"p-cactions" role=
"navigation" class=
"vectorMenu<?php
405 if ( count( $this->data['action_urls'] ) == 0 ) {
406 echo ' emptyPortlet';
408 ?>" aria-labelledby=
"p-cactions-label">
409 <h3
id=
"p-cactions-label"><span><?php
410 $this->
msg(
'vector-more-actions' )
414 <ul<?php $this->
html(
'userlangattributes' ) ?>>
416 foreach ( $this->data[
'action_urls'] as $key => $item ) {
417 echo
"\t\t\t\t\t\t\t\t" . $this->
makeListItem( $key, $item ) .
"\n";
427 <div
id=
"p-personal" role=
"navigation" class=
"<?php
428 if ( count( $this->data['personal_urls'] ) == 0 ) {
429 echo ' emptyPortlet';
431 ?>" aria-labelledby=
"p-personal-label">
432 <h3
id=
"p-personal-label"><?php $this->
msg(
'personaltools' ) ?></h3>
433 <ul<?php $this->
html(
'userlangattributes' ) ?>>
437 if ( !$this->
getSkin()->getUser()->isLoggedIn() &&
438 User::groupHasPermission(
'*',
'edit' )
441 Html::rawElement(
'li',
442 [
'id' =>
'pt-anonuserpage' ],
443 $this->
getMsg(
'notloggedin' )->escaped()
450 if ( array_key_exists(
'uls', $personalTools ) ) {
451 $langSelector = $this->
makeListItem(
'uls', $personalTools[
'uls' ] );
452 unset( $personalTools[
'uls' ] );
455 if ( !$this->data[
'rtl' ] ) {
460 foreach ( $personalTools as $key => $item ) {
464 if ( $this->data[
'rtl' ] ) {
475 <div
id=
"p-search" role=
"search">
476 <h3<?php $this->
html(
'userlangattributes' ) ?>>
477 <label
for=
"searchInput"><?php $this->
msg(
'search' ) ?></label>
480 <
form action=
"<?php $this->text( 'wgScript' ) ?>" id=
"searchform">
481 <div<?php echo $this->config->get(
'VectorUseSimpleSearch' ) ?
' id="simpleSearch"' :
'' ?>>
484 echo Html::hidden(
'title', $this->
get(
'searchtitle' ) );
499 [
'id' =>
'mw-searchButton',
'class' =>
'searchButton mw-fallbackSearchButton' ]
503 [
'id' =>
'searchButton',
'class' =>
'searchButton' ]
523 $html = Html::rawElement(
'span', [],
$html );
534 $this->config->get(
'VectorUseIconWatch' )
535 && ( $key ===
'watch' || $key ===
'unwatch' )
537 $item[
'class'] = rtrim(
'icon ' . $item[
'class'],
' ' );
538 $item[
'primary'] =
true;
544 && !( isset( $item[
'primary'] ) && $item[
'primary'] )
546 $item[
'class'] = rtrim(
'collapsible ' . $item[
'class'],
' ' );
550 unset( $item[
'redundant'] );
552 return parent::makeListItem( $key, $item,
$options );
New base template for a skin's template extended from QuickTemplate this class features helper method...
getFooterLinks( $option=null)
Returns an array of footerlinks trimmed down to only those footer links that are valid.
makeSearchButton( $mode, $attrs=[])
renderAfterPortlet( $name)
getToolbox()
Create an array of common toolbox items from the data in the quicktemplate stored by SkinTemplate.
printTrail()
Output getTrail.
getPersonalTools()
Create an array of personal tools items from the data in the quicktemplate stored by SkinTemplate.
getFooterIcons( $option=null)
Returns an array of footer icons filtered down by options relevant to how the skin wishes to display ...
getMsg( $name)
Get a Message object with its context set.
getIndicators()
Get the suggested HTML for page status indicators: icons (or short text snippets) usually displayed i...
makeSearchInput( $attrs=[])
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[])
Returns the attributes for the tooltip and access key.
static tooltip( $name, $options=null)
Returns raw bits of HTML, use titleAttrib()
getSkin()
Get the Skin object related to this object.
QuickTemplate class for Vector skin.
makeLink( $key, $item, $options=[])
@inheritDoc
makeListItem( $key, $item, $options=[])
@inheritDoc
renderNavigation( $elements)
Render one or more navigations elements by name, automatically reveresed when UI is in RTL mode.
execute()
Outputs the entire contents of the (X)HTML page.
renderPortal( $name, $content, $msg=null, $hook=null)
renderPortals( $portals)
Render a series of portals.
info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) action
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
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 & $options
null means default in associative array form
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 "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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 & $html
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Allows to change the fields on the form that will be generated $name