MediaWiki  1.29.1
SkinCologneBlue.php
Go to the documentation of this file.
1 <?php
25 if ( !defined( 'MEDIAWIKI' ) ) {
26  die( -1 );
27 }
28 
34  public $skinname = 'cologneblue';
35  public $template = 'CologneBlueTemplate';
36 
41  parent::setupSkinUserCss( $out );
42  $out->addModuleStyles( 'mediawiki.legacy.oldshared' );
43  $out->addModuleStyles( 'skins.cologneblue' );
44  }
45 
52  function formatLanguageName( $name ) {
53  return $name;
54  }
55 }
56 
58  function execute() {
59  // Suppress warnings to prevent notices about missing indexes in $this->data
61  $this->html( 'headelement' );
62  echo $this->beforeContent();
63  $this->html( 'bodytext' );
64  echo "\n";
65  echo $this->afterContent();
66  $this->html( 'dataAfterContent' );
67  $this->printTrail();
68  echo "\n</body></html>";
70  }
71 
76  function variantLinks() {
77  $s = array();
78 
79  $variants = $this->data['content_navigation']['variants'];
80 
81  foreach ( $variants as $key => $link ) {
82  $s[] = $this->makeListItem( $key, $link, array( 'tag' => 'span' ) );
83  }
84 
85  return $this->getSkin()->getLanguage()->pipeList( $s );
86  }
87 
88  function otherLanguages() {
89  if ( $this->config->get( 'HideInterlanguageLinks' ) ) {
90  return "";
91  }
92 
93  $html = '';
94 
95  // We override SkinTemplate->formatLanguageName() in SkinCologneBlue
96  // not to capitalize the language names.
97  $language_urls = $this->data['language_urls'];
98  if ( !empty( $language_urls ) ) {
99  $s = array();
100  foreach ( $language_urls as $key => $data ) {
101  $s[] = $this->makeListItem( $key, $data, array( 'tag' => 'span' ) );
102  }
103 
104  $html = wfMessage( 'otherlanguages' )->text()
105  . wfMessage( 'colon-separator' )->text()
106  . $this->getSkin()->getLanguage()->pipeList( $s );
107  }
108 
109  $html .= $this->renderAfterPortlet( 'lang' );
110 
111  return $html;
112  }
113 
117  protected function renderAfterPortlet( $name ) {
118  $content = '';
119  Hooks::run( 'BaseTemplateAfterPortlet', array( $this, $name, &$content ) );
120 
121  $html = $content !== '' ? "<div class='after-portlet after-portlet-$name'>$content</div>" : '';
122 
123  return $html;
124  }
125 
126  function pageTitleLinks() {
127  $s = array();
128  $footlinks = $this->getFooterLinks();
129 
130  foreach ( $footlinks['places'] as $item ) {
131  $s[] = $this->data[$item];
132  }
133 
134  return $this->getSkin()->getLanguage()->pipeList( $s );
135  }
136 
146  function processBottomLink( $key, $navlink, $message = null ) {
147  if ( !$navlink ) {
148  // Empty navlinks might be passed.
149  return null;
150  }
151 
152  if ( $message ) {
153  $navlink['text'] = wfMessage( $message )->escaped();
154  }
155 
156  return $this->makeListItem(
157  $key,
158  $this->processNavlinkForDocument( $navlink ),
159  array( 'tag' => 'span' )
160  );
161  }
162 
163  function bottomLinks() {
164  $toolbox = $this->getToolbox();
165  $content_nav = $this->data['content_navigation'];
166 
167  $lines = array();
168 
169  if ( $this->getSkin()->getOutput()->isArticleRelated() ) {
170  // First row. Regular actions.
171  $element = array();
172 
173  $editLinkMessage = $this->getSkin()->getTitle()->exists() ? 'editthispage' : 'create-this-page';
174  $element[] = $this->processBottomLink( 'edit', $content_nav['views']['edit'], $editLinkMessage );
175  $element[] = $this->processBottomLink(
176  'viewsource',
177  $content_nav['views']['viewsource'],
178  'viewsource'
179  );
180 
181  $element[] = $this->processBottomLink(
182  'watch',
183  $content_nav['actions']['watch'],
184  'watchthispage'
185  );
186  $element[] = $this->processBottomLink(
187  'unwatch',
188  $content_nav['actions']['unwatch'],
189  'unwatchthispage'
190  );
191 
192  $element[] = $this->talkLink();
193 
194  $element[] = $this->processBottomLink( 'history', $content_nav['views']['history'], 'history' );
195  $element[] = $this->processBottomLink( 'info', $toolbox['info'] );
196  $element[] = $this->processBottomLink( 'whatlinkshere', $toolbox['whatlinkshere'] );
197  $element[] = $this->processBottomLink( 'recentchangeslinked', $toolbox['recentchangeslinked'] );
198 
199  $element[] = $this->processBottomLink( 'contributions', $toolbox['contributions'] );
200  if ( isset( $toolbox['emailuser'] ) ) {
201  $element[] = $this->processBottomLink( 'emailuser', $toolbox['emailuser'] );
202  }
203 
204  $lines[] = $this->getSkin()->getLanguage()->pipeList( array_filter( $element ) );
205 
206  // Second row. Privileged actions.
207  $element = array();
208 
209  $element[] = $this->processBottomLink(
210  'delete',
211  $content_nav['actions']['delete'],
212  'deletethispage'
213  );
214  if ( isset( $content_nav['actions']['undelete'] ) ) {
215  $element[] = $this->processBottomLink(
216  'undelete',
217  $content_nav['actions']['undelete'],
218  'undeletethispage'
219  );
220  }
221 
222  if ( isset( $content_nav['actions']['protect'] ) ) {
223  $element[] = $this->processBottomLink(
224  'protect',
225  $content_nav['actions']['protect'],
226  'protectthispage'
227  );
228  }
229 
230  if ( isset( $content_nav['actions']['unprotect'] ) ) {
231  $element[] = $this->processBottomLink(
232  'unprotect',
233  $content_nav['actions']['unprotect'],
234  'unprotectthispage'
235  );
236  }
237 
238  $element[] = $this->processBottomLink( 'move', $content_nav['actions']['move'], 'movethispage' );
239 
240  $lines[] = $this->getSkin()->getLanguage()->pipeList( array_filter( $element ) );
241 
242  // Third row. Language links.
243  $lines[] = $this->otherLanguages();
244  }
245 
246  return implode( array_filter( $lines ), "<br />\n" ) . "<br />\n";
247  }
248 
249  function talkLink() {
250  $title = $this->getSkin()->getTitle();
251 
252  if ( $title->getNamespace() == NS_SPECIAL ) {
253  // No discussion links for special pages
254  return "";
255  }
256 
257  $companionTitle = $title->isTalkPage() ? $title->getSubjectPage() : $title->getTalkPage();
258  $companionNamespace = $companionTitle->getNamespace();
259 
260  // TODO these messages are only be used by CologneBlue,
261  // kill and replace with something more sensibly named?
262  $nsToMessage = array(
263  NS_MAIN => 'articlepage',
264  NS_USER => 'userpage',
265  NS_PROJECT => 'projectpage',
266  NS_FILE => 'imagepage',
267  NS_MEDIAWIKI => 'mediawikipage',
268  NS_TEMPLATE => 'templatepage',
269  NS_HELP => 'viewhelppage',
270  NS_CATEGORY => 'categorypage',
271  NS_FILE => 'imagepage',
272  );
273 
274  // Find out the message to use for link text. Use either the array above or,
275  // for non-talk pages, a generic "discuss this" message.
276  // Default is the same as for main namespace.
277  if ( isset( $nsToMessage[$companionNamespace] ) ) {
278  $message = $nsToMessage[$companionNamespace];
279  } else {
280  $message = $companionTitle->isTalkPage() ? 'talkpage' : 'articlepage';
281  }
282 
283  // Obviously this can't be reasonable and just return the key for talk
284  // namespace, only for content ones. Thus we have to mangle it in
285  // exactly the same way SkinTemplate does. (bug 40805)
286  $key = $companionTitle->getNamespaceKey( '' );
287  if ( $companionTitle->isTalkPage() ) {
288  $key = ( $key == 'main' ? 'talk' : $key . "_talk" );
289  }
290 
291  // Use the regular navigational link, but replace its text. Everything else stays unmodified.
292  $namespacesLinks = $this->data['content_navigation']['namespaces'];
293 
294  return $this->processBottomLink( $message, $namespacesLinks[$key], $message );
295  }
296 
307  function processNavlinkForDocument( $navlink, $idPrefix = 'cb-' ) {
308  if ( $navlink['id'] ) {
309  $navlink['single-id'] = $navlink['id']; // to allow for tooltip generation
310  $navlink['tooltiponly'] = true; // but no accesskeys
311 
312  // mangle or remove the id
313  if ( $idPrefix === false ) {
314  unset( $navlink['id'] );
315  } else {
316  $navlink['id'] = $idPrefix . $navlink['id'];
317  }
318  }
319 
320  return $navlink;
321  }
322 
326  function beforeContent() {
327  ob_start();
328  ?>
329  <div id="content">
330  <div id="topbar">
331  <p id="sitetitle" role="banner">
332  <a href="<?php echo htmlspecialchars( $this->data['nav_urls']['mainpage']['href'] ) ?>">
333  <?php echo wfMessage( 'sitetitle' )->escaped() ?>
334  </a>
335  </p>
336 
337  <p id="sitesub"><?php echo wfMessage( 'sitesubtitle' )->escaped() ?></p>
338 
339  <div id="linkcollection" role="navigation">
340  <div id="langlinks"><?php echo str_replace( '<br />', '', $this->otherLanguages() ) ?></div>
341  <?php echo $this->getSkin()->getCategories() ?>
342  <div id="titlelinks"><?php echo $this->pageTitleLinks() ?></div>
343  <?php
344  if ( $this->data['newtalk'] ) {
345  ?>
346  <div class="usermessage"><strong><?php echo $this->data['newtalk'] ?></strong></div>
347  <?php
348  }
349  ?>
350  </div>
351  </div>
352  <div id="article" class="mw-body" role="main">
353  <?php
354  if ( $this->getSkin()->getSiteNotice() ) {
355  ?>
356  <div id="siteNotice"><?php echo $this->getSkin()->getSiteNotice() ?></div>
357  <?php
358  }
359  ?>
360  <?php echo $this->getIndicators(); ?>
361  <h1 id="firstHeading" lang="<?php
362  $this->data['pageLanguage'] = $this->getSkin()->getTitle()->getPageViewLanguage()->getHtmlCode();
363  $this->text( 'pageLanguage' );
364  ?>"><?php echo $this->data['title'] ?></h1>
365  <?php
366  if ( $this->translator->translate( 'tagline' ) ) {
367  ?>
368  <p class="tagline"><?php
369  echo htmlspecialchars( $this->translator->translate( 'tagline' ) )
370  ?></p>
371  <?php
372  }
373  ?>
374  <?php
375  if ( $this->getSkin()->getOutput()->getSubtitle() ) {
376  ?>
377  <p class="subtitle"><?php echo $this->getSkin()->getOutput()->getSubtitle() ?></p>
378  <?php
379  }
380  ?>
381  <?php
382  if ( $this->getSkin()->subPageSubtitle() ) {
383  ?>
384  <p class="subpages"><?php echo $this->getSkin()->subPageSubtitle() ?></p>
385  <?php
386  }
387  ?>
388  <?php
389  $s = ob_get_contents();
390  ob_end_clean();
391 
392  return $s;
393  }
394 
398  function afterContent() {
399  ob_start();
400  ?>
401  </div>
402  <div id="footer">
403  <div id="footer-navigation" role="navigation">
404  <?php
405  // Page-related links
406  echo $this->bottomLinks();
407  echo "\n<br />";
408 
409  // Footer and second searchbox
410  echo $this->getSkin()->getLanguage()->pipeList( array(
411  $this->getSkin()->mainPageLink(),
412  $this->getSkin()->aboutLink(),
413  $this->searchForm( 'footer' )
414  ) );
415  ?>
416  </div>
417  <div id="footer-info" role="contentinfo">
418  <?php
419  // Standard footer info
420  $footlinks = $this->getFooterLinks();
421  if ( $footlinks['info'] ) {
422  foreach ( $footlinks['info'] as $item ) {
423  echo $this->data[$item] . ' ';
424  }
425  }
426  ?>
427  </div>
428  </div>
429  </div>
430  <div id="mw-navigation">
431  <h2><?php echo wfMessage( 'navigation-heading' )->escaped() ?></h2>
432 
433  <div id="toplinks" role="navigation">
434  <p id="syslinks"><?php echo $this->sysLinks() ?></p>
435 
436  <p id="variantlinks"><?php echo $this->variantLinks() ?></p>
437  </div>
438  <?php echo $this->quickBar() ?>
439  </div>
440  <?php
441  $s = ob_get_contents();
442  ob_end_clean();
443 
444  return $s;
445  }
446 
450  function sysLinks() {
451  $s = array(
452  $this->getSkin()->mainPageLink(),
454  Title::newFromText( wfMessage( 'aboutpage' )->inContentLanguage()->text() ),
455  wfMessage( 'about' )->text()
456  ),
458  Skin::makeInternalOrExternalUrl( wfMessage( 'helppage' )->inContentLanguage()->text() ),
459  wfMessage( 'help' )->text(),
460  false
461  ),
463  Title::newFromText( wfMessage( 'faqpage' )->inContentLanguage()->text() ),
464  wfMessage( 'faq' )->text()
465  ),
466  );
467 
468  $personalUrls = $this->getPersonalTools();
469  foreach ( array( 'logout', 'createaccount', 'login' ) as $key ) {
470  if ( isset( $personalUrls[$key] ) ) {
471  $s[] = $this->makeListItem( $key, $personalUrls[$key], array( 'tag' => 'span' ) );
472  }
473  }
474 
475  return $this->getSkin()->getLanguage()->pipeList( $s );
476  }
477 
484  function sidebarAdditions( $bar ) {
485  // "This page" and "Edit" menus
486  // We need to do some massaging here... we reuse all of the items,
487  // except for $...['views']['view'], as $...['namespaces']['main'] and
488  // $...['namespaces']['talk'] together serve the same purpose. We also
489  // don't use $...['variants'], these are displayed in the top menu.
490  $content_navigation = $this->data['content_navigation'];
491  $qbpageoptions = array_merge(
492  $content_navigation['namespaces'],
493  array(
494  'history' => $content_navigation['views']['history'],
495  'watch' => $content_navigation['actions']['watch'],
496  'unwatch' => $content_navigation['actions']['unwatch'],
497  )
498  );
499  $content_navigation['actions']['watch'] = null;
500  $content_navigation['actions']['unwatch'] = null;
501  $qbEditLinks = [ 'edit' => $content_navigation['views']['edit'] ];
502  if ( isset( $content_navigation['views']['addsection'] ) ) {
503  $qbEditLinks['addsection'] = $content_navigation['views']['addsection'];
504  }
505  $qbedit = array_merge(
506  $qbEditLinks,
507  $content_navigation['actions']
508  );
509 
510  // Personal tools ("My pages")
511  $qbmyoptions = $this->getPersonalTools();
512  foreach ( array( 'logout', 'createaccount', 'login', ) as $key ) {
513  $qbmyoptions[$key] = null;
514  }
515 
516  // Use the closest reasonable name
517  $bar['cactions'] = $qbedit;
518  $bar['pageoptions'] = $qbpageoptions; // this is a non-standard portlet name, but nothing fits
519  $bar['personal'] = $qbmyoptions;
520 
521  return $bar;
522  }
523 
530  function quickBar() {
531  // Massage the sidebar. We want to:
532  // * place SEARCH at the beginning
533  // * add new portlets before TOOLBOX (or at the end, if it's missing)
534  // * remove LANGUAGES (langlinks are displayed elsewhere)
535  $orig_bar = $this->data['sidebar'];
536  $bar = array();
537  $hasToolbox = false;
538 
539  // Always display search first
540  $bar['SEARCH'] = true;
541  // Copy everything except for langlinks, inserting new items before toolbox
542  foreach ( $orig_bar as $heading => $data ) {
543  if ( $heading == 'TOOLBOX' ) {
544  // Insert the stuff
545  $bar = $this->sidebarAdditions( $bar );
546  $hasToolbox = true;
547  }
548 
549  if ( $heading != 'LANGUAGES' ) {
550  $bar[$heading] = $data;
551  }
552  }
553  // If toolbox is missing, add our items at the end
554  if ( !$hasToolbox ) {
555  $bar = $this->sidebarAdditions( $bar );
556  }
557 
558  // Fill out special sidebar items with content
559  $orig_bar = $bar;
560  $bar = array();
561  foreach ( $orig_bar as $heading => $data ) {
562  if ( $heading == 'SEARCH' ) {
563  $bar['search'] = $this->searchForm( 'sidebar' );
564  } elseif ( $heading == 'TOOLBOX' ) {
565  $bar['tb'] = $this->getToolbox();
566  } else {
567  $bar[$heading] = $data;
568  }
569  }
570 
571  // Output the sidebar
572  // CologneBlue uses custom messages for some portlets, but we should keep the ids for consistency
573  $idToMessage = array(
574  'search' => 'qbfind',
575  'navigation' => 'qbbrowse',
576  'tb' => 'toolbox',
577  'cactions' => 'qbedit',
578  'personal' => 'qbmyoptions',
579  'pageoptions' => 'qbpageoptions',
580  );
581 
582  $s = "<div id='quickbar'>\n";
583 
584  foreach ( $bar as $heading => $data ) {
585  // Numeric strings gets an integer when set as key, cast back - T73639
586  $heading = (string)$heading;
587 
588  $portletId = Sanitizer::escapeId( "p-$heading" );
589  $headingMsg = wfMessage( $idToMessage[$heading] ? $idToMessage[$heading] : $heading );
590  $headingHTML = "<h3>";
591  $headingHTML .= $headingMsg->exists()
592  ? $headingMsg->escaped()
593  : htmlspecialchars( $heading );
594  $headingHTML .= "</h3>";
595  $listHTML = "";
596 
597  if ( is_array( $data ) ) {
598  // $data is an array of links
599  foreach ( $data as $key => $link ) {
600  // Can be empty due to how the sidebar additions are done
601  if ( $link ) {
602  $listHTML .= $this->makeListItem( $key, $link );
603  }
604  }
605  if ( $listHTML ) {
606  $listHTML = "<ul>$listHTML</ul>";
607  }
608  } else {
609  // $data is a HTML <ul>-list string
610  $listHTML = $data;
611  }
612 
613  if ( $listHTML ) {
614  $role = ( $heading == 'search' ) ? 'search' : 'navigation';
615  $s .= "<div class=\"portlet\" id=\"$portletId\" "
616  . "role=\"$role\">\n$headingHTML\n$listHTML\n</div>\n";
617  }
618 
619  $s .= $this->renderAfterPortlet( $heading );
620  }
621 
622  $s .= "</div>\n";
623 
624  return $s;
625  }
626 
631  function searchForm( $which ) {
632  $search = $this->getSkin()->getRequest()->getText( 'search' );
633  $action = $this->data['searchaction'];
634  $s = "<form id=\"searchform-" . htmlspecialchars( $which )
635  . "\" method=\"get\" class=\"inline\" action=\"$action\">";
636  if ( $which == 'footer' ) {
637  $s .= wfMessage( 'qbfind' )->text() . ": ";
638  }
639 
640  $s .= $this->makeSearchInput( array(
641  'class' => 'mw-searchInput',
642  'type' => 'text',
643  'size' => '14'
644  ) );
645  $s .= ( $which == 'footer' ? " " : "<br />" );
646  $s .= $this->makeSearchButton( 'go', array( 'class' => 'searchButton' ) );
647 
648  if ( $this->config->get( 'UseTwoButtonsSearchForm' ) ) {
649  $s .= $this->makeSearchButton( 'fulltext', array( 'class' => 'searchButton' ) );
650  } else {
651  $s .= '<div><a href="' . $action . '" rel="search">'
652  . wfMessage( 'powersearch-legend' )->escaped() . "</a></div>\n";
653  }
654 
655  $s .= '</form>';
656 
657  return $s;
658  }
659 }
CologneBlueTemplate\data
$this data['pageLanguage']
Definition: SkinCologneBlue.php:362
BaseTemplate\getPersonalTools
getPersonalTools()
Create an array of personal tools items from the data in the quicktemplate stored by SkinTemplate.
Definition: BaseTemplate.php:131
CologneBlueTemplate
Definition: SkinCologneBlue.php:57
BaseTemplate\getFooterLinks
getFooterLinks( $option=null)
Returns an array of footerlinks trimmed down to only those footer links that are valid.
Definition: BaseTemplate.php:585
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
NS_HELP
const NS_HELP
Definition: Defines.php:74
SkinCologneBlue\$template
$template
Definition: SkinCologneBlue.php:35
CologneBlueTemplate\$s
if( $this->translator->translate( 'tagline')) if( $this->getSkin() ->getOutput() ->getSubtitle()) if( $this->getSkin() ->subPageSubtitle()) $s
Definition: SkinCologneBlue.php:389
BaseTemplate\makeSearchButton
makeSearchButton( $mode, $attrs=[])
Definition: BaseTemplate.php:532
CologneBlueTemplate\bottomLinks
bottomLinks()
Definition: SkinCologneBlue.php:163
CologneBlueTemplate\variantLinks
variantLinks()
Language/charset variant links for classic-style skins.
Definition: SkinCologneBlue.php:76
CologneBlueTemplate\execute
execute()
Main function, used by classes that subclass QuickTemplate to show the actual HTML output.
Definition: SkinCologneBlue.php:58
wfSuppressWarnings
wfSuppressWarnings( $end=false)
Reference-counted warning suppression.
Definition: GlobalFunctions.php:1974
NS_FILE
const NS_FILE
Definition: Defines.php:68
CologneBlueTemplate\searchForm
searchForm( $which)
Definition: SkinCologneBlue.php:631
NS_TEMPLATE
const NS_TEMPLATE
Definition: Defines.php:72
CologneBlueTemplate\talkLink
talkLink()
Definition: SkinCologneBlue.php:249
CologneBlueTemplate\quickBar
quickBar()
Compute the sidebar.
Definition: SkinCologneBlue.php:530
Linker\linkKnown
static linkKnown( $target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
Definition: Linker.php:159
CologneBlueTemplate\pageTitleLinks
pageTitleLinks()
Definition: SkinCologneBlue.php:126
CologneBlueTemplate\processNavlinkForDocument
processNavlinkForDocument( $navlink, $idPrefix='cb-')
Takes a navigational link generated by SkinTemplate in whichever way and mangles attributes unsuitabl...
Definition: SkinCologneBlue.php:307
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
CologneBlueTemplate\sysLinks
sysLinks()
Definition: SkinCologneBlue.php:450
CologneBlueTemplate\beforeContent
beforeContent()
Definition: SkinCologneBlue.php:326
QuickTemplate\getSkin
getSkin()
Get the Skin object related to this object.
Definition: QuickTemplate.php:173
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
NS_MAIN
const NS_MAIN
Definition: Defines.php:62
NS_SPECIAL
const NS_SPECIAL
Definition: Defines.php:51
$html
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
Definition: hooks.txt:1956
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
NS_PROJECT
const NS_PROJECT
Definition: Defines.php:66
a
</source > ! result< div class="mw-highlight mw-content-ltr" dir="ltr">< pre >< span ></span >< span class="kd"> var</span >< span class="nx"> a</span >< span class="p"></span ></pre ></div > ! end ! test Multiline< source/> in lists !input *< source > a b</source > *foo< source > a b</source > ! html< ul >< li >< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul >< ul >< li > foo< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul > ! html tidy< ul >< li >< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul >< ul >< li > foo< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul > ! end ! test Custom attributes !input< source lang="javascript" id="foo" class="bar" dir="rtl" style="font-size: larger;"> var a
Definition: parserTests.txt:89
wfRestoreWarnings
wfRestoreWarnings()
Definition: GlobalFunctions.php:1982
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1049
BaseTemplate\printTrail
printTrail()
Output getTrail.
Definition: BaseTemplate.php:751
BaseTemplate\makeListItem
makeListItem( $key, $item, $options=[])
Generates a list item for a navigation, portlet, portal, sidebar...
Definition: BaseTemplate.php:474
div
div
Definition: parserTests.txt:6533
$lines
$lines
Definition: router.php:67
Linker\makeExternalLink
static makeExternalLink( $url, $text, $escape=true, $linktype='', $attribs=[], $title=null)
Make an external link.
Definition: Linker.php:838
BaseTemplate\getIndicators
getIndicators()
Get the suggested HTML for page status indicators: icons (or short text snippets) usually displayed i...
Definition: BaseTemplate.php:732
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:76
string
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
Definition: hooks.txt:177
OutputPage
This class should be covered by a general architecture document which does not exist as of January 20...
Definition: OutputPage.php:44
QuickTemplate\text
text( $str)
Definition: QuickTemplate.php:108
BaseTemplate\makeSearchInput
makeSearchInput( $attrs=[])
Definition: BaseTemplate.php:521
SkinCologneBlue\setupSkinUserCss
setupSkinUserCss(OutputPage $out)
Definition: SkinCologneBlue.php:40
CologneBlueTemplate\processBottomLink
processBottomLink( $key, $navlink, $message=null)
Used in bottomLinks() to eliminate repetitive code.
Definition: SkinCologneBlue.php:146
BaseTemplate\getToolbox
getToolbox()
Create an array of common toolbox items from the data in the quicktemplate stored by SkinTemplate.
Definition: BaseTemplate.php:58
QuickTemplate\html
html( $str)
Definition: QuickTemplate.php:116
SkinCologneBlue
Definition: SkinCologneBlue.php:33
SkinCologneBlue\$skinname
$skinname
Definition: SkinCologneBlue.php:34
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
CologneBlueTemplate\otherLanguages
otherLanguages()
Definition: SkinCologneBlue.php:88
NS_USER
const NS_USER
Definition: Defines.php:64
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2929
SkinCologneBlue\formatLanguageName
formatLanguageName( $name)
Override langlink formatting behavior not to uppercase the language names.
Definition: SkinCologneBlue.php:52
CologneBlueTemplate\sidebarAdditions
sidebarAdditions( $bar)
Adds CologneBlue-specific items to the sidebar: qbedit, qbpageoptions and qbmyoptions menus.
Definition: SkinCologneBlue.php:484
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
CologneBlueTemplate\afterContent
afterContent()
Definition: SkinCologneBlue.php:398
NS_MEDIAWIKI
const NS_MEDIAWIKI
Definition: Defines.php:70
CologneBlueTemplate\$s
return $s
Definition: SkinCologneBlue.php:392
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
href
shown</td >< td > a href
Definition: All_system_messages.txt:2667
BaseTemplate
New base template for a skin's template extended from QuickTemplate this class features helper method...
Definition: BaseTemplate.php:26
SkinTemplate
Base class for template-based skins.
Definition: SkinTemplate.php:38
Skin\makeInternalOrExternalUrl
static makeInternalOrExternalUrl( $name)
If url string starts with http, consider as external URL, else internal.
Definition: Skin.php:1132
array
the array() calling protocol came about after MediaWiki 1.4rc1.
CologneBlueTemplate\renderAfterPortlet
renderAfterPortlet( $name)
Definition: SkinCologneBlue.php:117
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783