MediaWiki REL1_33
PageQueryPage.php
Go to the documentation of this file.
1<?php
27
33abstract class PageQueryPage extends QueryPage {
42 public function preprocessResults( $db, $res ) {
44 }
45
53 public function formatResult( $skin, $row ) {
54 $title = Title::makeTitleSafe( $row->namespace, $row->title );
55
56 if ( $title instanceof Title ) {
57 $text = MediaWikiServices::getInstance()->getContentLanguage()->
58 convert( htmlspecialchars( $title->getPrefixedText() ) );
59 return $this->getLinkRenderer()->makeLink( $title, new HtmlArmor( $text ) );
60 } else {
61 return Html::element( 'span', [ 'class' => 'mw-invalidtitle' ],
62 Linker::getInvalidTitleDescription( $this->getContext(), $row->namespace, $row->title ) );
63 }
64 }
65}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Marks HTML that shouldn't be escaped.
Definition HtmlArmor.php:28
static getInvalidTitleDescription(IContextSource $context, $namespace, $title)
Get a message saying that an invalid title was encountered.
Definition Linker.php:191
MediaWikiServices is the service locator for the application scope of MediaWiki.
Variant of QueryPage which formats the result as a simple link to the page.
preprocessResults( $db, $res)
Run a LinkBatch to pre-cache LinkCache information, like page existence and information for stub colo...
formatResult( $skin, $row)
Format the result as a simple link to the page.
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition QueryPage.php:35
executeLBFromResultWrapper(IResultWrapper $res, $ns=null)
Creates a new LinkBatch object, adds all pages from the passed ResultWrapper (MUST include title and ...
getContext()
Gets the context this SpecialPage is executed in.
Represents a title within MediaWiki.
Definition Title.php:40
$res
Definition database.txt:21
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
Result wrapper for grabbing data queried from an IDatabase object.