MediaWiki  1.29.1
AllMessagesTablePager.php
Go to the documentation of this file.
1 <?php
23 
31 
33 
35 
36  public $mLimitsShown;
37 
41  public $lang;
42 
46  public $custom;
47 
48  function __construct( $page, $conds, $langObj = null ) {
49  parent::__construct( $page->getContext() );
50  $this->mIndexField = 'am_title';
51  $this->mPage = $page;
52  $this->mConds = $conds;
53  // FIXME: Why does this need to be set to DIR_DESCENDING to produce ascending ordering?
54  $this->mDefaultDirection = IndexPager::DIR_DESCENDING;
55  $this->mLimitsShown = [ 20, 50, 100, 250, 500, 5000 ];
56 
58 
59  $this->talk = $this->msg( 'talkpagelinktext' )->escaped();
60 
61  $this->lang = ( $langObj ? $langObj : $wgContLang );
62  $this->langcode = $this->lang->getCode();
63  $this->foreign = !$this->lang->equals( $wgContLang );
64 
65  $request = $this->getRequest();
66 
67  $this->filter = $request->getVal( 'filter', 'all' );
68  if ( $this->filter === 'all' ) {
69  $this->custom = null; // So won't match in either case
70  } else {
71  $this->custom = ( $this->filter === 'unmodified' );
72  }
73 
74  $prefix = $this->getLanguage()->ucfirst( $request->getVal( 'prefix', '' ) );
75  $prefix = $prefix !== '' ?
76  Title::makeTitleSafe( NS_MEDIAWIKI, $request->getVal( 'prefix', null ) ) :
77  null;
78 
79  if ( $prefix !== null ) {
80  $this->displayPrefix = $prefix->getDBkey();
81  $this->prefix = '/^' . preg_quote( $this->displayPrefix, '/' ) . '/i';
82  } else {
83  $this->displayPrefix = false;
84  $this->prefix = false;
85  }
86 
87  // The suffix that may be needed for message names if we're in a
88  // different language (eg [[MediaWiki:Foo/fr]]: $suffix = '/fr'
89  if ( $this->foreign ) {
90  $this->suffix = '/' . $this->langcode;
91  } else {
92  $this->suffix = '';
93  }
94  }
95 
96  function buildForm() {
97  $attrs = [ 'id' => 'mw-allmessages-form-lang', 'name' => 'lang' ];
98  $msg = wfMessage( 'allmessages-language' );
99  $langSelect = Xml::languageSelector( $this->langcode, false, null, $attrs, $msg );
100 
101  $out = Xml::openElement( 'form', [
102  'method' => 'get',
103  'action' => $this->getConfig()->get( 'Script' ),
104  'id' => 'mw-allmessages-form'
105  ] ) .
106  Xml::fieldset( $this->msg( 'allmessages-filter-legend' )->text() ) .
107  Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
108  Xml::openElement( 'table', [ 'class' => 'mw-allmessages-table' ] ) . "\n" .
109  '<tr>
110  <td class="mw-label">' .
111  Xml::label( $this->msg( 'allmessages-prefix' )->text(), 'mw-allmessages-form-prefix' ) .
112  "</td>\n
113  <td class=\"mw-input\">" .
114  Xml::input(
115  'prefix',
116  20,
117  str_replace( '_', ' ', $this->displayPrefix ),
118  [ 'id' => 'mw-allmessages-form-prefix' ]
119  ) .
120  "</td>\n
121  </tr>
122  <tr>\n
123  <td class='mw-label'>" .
124  $this->msg( 'allmessages-filter' )->escaped() .
125  "</td>\n
126  <td class='mw-input'>" .
127  Xml::radioLabel( $this->msg( 'allmessages-filter-unmodified' )->text(),
128  'filter',
129  'unmodified',
130  'mw-allmessages-form-filter-unmodified',
131  ( $this->filter === 'unmodified' )
132  ) .
133  Xml::radioLabel( $this->msg( 'allmessages-filter-all' )->text(),
134  'filter',
135  'all',
136  'mw-allmessages-form-filter-all',
137  ( $this->filter === 'all' )
138  ) .
139  Xml::radioLabel( $this->msg( 'allmessages-filter-modified' )->text(),
140  'filter',
141  'modified',
142  'mw-allmessages-form-filter-modified',
143  ( $this->filter === 'modified' )
144  ) .
145  "</td>\n
146  </tr>
147  <tr>\n
148  <td class=\"mw-label\">" . $langSelect[0] . "</td>\n
149  <td class=\"mw-input\">" . $langSelect[1] . "</td>\n
150  </tr>" .
151 
152  '<tr>
153  <td class="mw-label">' .
154  Xml::label( $this->msg( 'table_pager_limit_label' )->text(), 'mw-table_pager_limit_label' ) .
155  '</td>
156  <td class="mw-input">' .
157  $this->getLimitSelect( [ 'id' => 'mw-table_pager_limit_label' ] ) .
158  '</td>
159  <tr>
160  <td></td>
161  <td>' .
162  Xml::submitButton( $this->msg( 'allmessages-filter-submit' )->text() ) .
163  "</td>\n
164  </tr>" .
165 
166  Xml::closeElement( 'table' ) .
167  $this->getHiddenFields( [ 'title', 'prefix', 'filter', 'lang', 'limit' ] ) .
168  Xml::closeElement( 'fieldset' ) .
169  Xml::closeElement( 'form' );
170 
171  return $out;
172  }
173 
174  function getAllMessages( $descending ) {
175  $messageNames = Language::getLocalisationCache()->getSubitemList( 'en', 'messages' );
176 
177  // Normalise message names so they look like page titles and sort correctly - T86139
178  $messageNames = array_map( [ $this->lang, 'ucfirst' ], $messageNames );
179 
180  if ( $descending ) {
181  rsort( $messageNames );
182  } else {
183  asort( $messageNames );
184  }
185 
186  return $messageNames;
187  }
188 
200  public static function getCustomisedStatuses( $messageNames, $langcode = 'en', $foreign = false ) {
201  // FIXME: This function should be moved to Language:: or something.
202 
203  $dbr = wfGetDB( DB_REPLICA );
204  $res = $dbr->select( 'page',
205  [ 'page_namespace', 'page_title' ],
206  [ 'page_namespace' => [ NS_MEDIAWIKI, NS_MEDIAWIKI_TALK ] ],
207  __METHOD__,
208  [ 'USE INDEX' => 'name_title' ]
209  );
210  $xNames = array_flip( $messageNames );
211 
212  $pageFlags = $talkFlags = [];
213 
214  foreach ( $res as $s ) {
215  $exists = false;
216 
217  if ( $foreign ) {
218  $titleParts = explode( '/', $s->page_title );
219  if ( count( $titleParts ) === 2 &&
220  $langcode === $titleParts[1] &&
221  isset( $xNames[$titleParts[0]] )
222  ) {
223  $exists = $titleParts[0];
224  }
225  } elseif ( isset( $xNames[$s->page_title] ) ) {
226  $exists = $s->page_title;
227  }
228 
230  if ( $exists && $title->inNamespace( NS_MEDIAWIKI ) ) {
231  $pageFlags[$exists] = true;
232  } elseif ( $exists && $title->inNamespace( NS_MEDIAWIKI_TALK ) ) {
233  $talkFlags[$exists] = true;
234  }
235  }
236 
237  return [ 'pages' => $pageFlags, 'talks' => $talkFlags ];
238  }
239 
248  function reallyDoQuery( $offset, $limit, $descending ) {
249  $result = new FakeResultWrapper( [] );
250 
251  $messageNames = $this->getAllMessages( $descending );
252  $statuses = self::getCustomisedStatuses( $messageNames, $this->langcode, $this->foreign );
253 
254  $count = 0;
255  foreach ( $messageNames as $key ) {
256  $customised = isset( $statuses['pages'][$key] );
257  if ( $customised !== $this->custom &&
258  ( $descending && ( $key < $offset || !$offset ) || !$descending && $key > $offset ) &&
259  ( ( $this->prefix && preg_match( $this->prefix, $key ) ) || $this->prefix === false )
260  ) {
261  $actual = wfMessage( $key )->inLanguage( $this->langcode )->plain();
262  $default = wfMessage( $key )->inLanguage( $this->langcode )->useDatabase( false )->plain();
263  $result->result[] = [
264  'am_title' => $key,
265  'am_actual' => $actual,
266  'am_default' => $default,
267  'am_customised' => $customised,
268  'am_talk_exists' => isset( $statuses['talks'][$key] )
269  ];
270  $count++;
271  }
272 
273  if ( $count === $limit ) {
274  break;
275  }
276  }
277 
278  return $result;
279  }
280 
281  function getStartBody() {
282  $tableClass = $this->getTableClass();
283  return Xml::openElement( 'table', [
284  'class' => "mw-datatable $tableClass",
285  'id' => 'mw-allmessagestable'
286  ] ) .
287  "\n" .
288  "<thead><tr>
289  <th rowspan=\"2\">" .
290  $this->msg( 'allmessagesname' )->escaped() . "
291  </th>
292  <th>" .
293  $this->msg( 'allmessagesdefault' )->escaped() .
294  "</th>
295  </tr>\n
296  <tr>
297  <th>" .
298  $this->msg( 'allmessagescurrent' )->escaped() .
299  "</th>
300  </tr></thead><tbody>\n";
301  }
302 
303  function formatValue( $field, $value ) {
304  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
305  switch ( $field ) {
306  case 'am_title' :
307  $title = Title::makeTitle( NS_MEDIAWIKI, $value . $this->suffix );
308  $talk = Title::makeTitle( NS_MEDIAWIKI_TALK, $value . $this->suffix );
309  $translation = Linker::makeExternalLink(
310  'https://translatewiki.net/w/i.php?' . wfArrayToCgi( [
311  'title' => 'Special:SearchTranslations',
312  'group' => 'mediawiki',
313  'grouppath' => 'mediawiki',
314  'language' => $this->getLanguage()->getCode(),
315  'query' => $value . ' ' . $this->msg( $value )->plain()
316  ] ),
317  $this->msg( 'allmessages-filter-translate' )->text()
318  );
319 
320  if ( $this->mCurrentRow->am_customised ) {
321  $title = $linkRenderer->makeKnownLink( $title, $this->getLanguage()->lcfirst( $value ) );
322  } else {
323  $title = $linkRenderer->makeBrokenLink(
324  $title,
325  $this->getLanguage()->lcfirst( $value )
326  );
327  }
328  if ( $this->mCurrentRow->am_talk_exists ) {
329  $talk = $linkRenderer->makeKnownLink( $talk, $this->talk );
330  } else {
331  $talk = $linkRenderer->makeBrokenLink(
332  $talk,
333  $this->talk
334  );
335  }
336 
337  return $title . ' ' .
338  $this->msg( 'parentheses' )->rawParams( $talk )->escaped() .
339  ' ' .
340  $this->msg( 'parentheses' )->rawParams( $translation )->escaped();
341 
342  case 'am_default' :
343  case 'am_actual' :
344  return Sanitizer::escapeHtmlAllowEntities( $value );
345  }
346 
347  return '';
348  }
349 
350  function formatRow( $row ) {
351  // Do all the normal stuff
352  $s = parent::formatRow( $row );
353 
354  // But if there's a customised message, add that too.
355  if ( $row->am_customised ) {
356  $s .= Xml::openElement( 'tr', $this->getRowAttrs( $row, true ) );
357  $formatted = strval( $this->formatValue( 'am_actual', $row->am_actual ) );
358 
359  if ( $formatted === '' ) {
360  $formatted = '&#160;';
361  }
362 
363  $s .= Xml::tags( 'td', $this->getCellAttrs( 'am_actual', $row->am_actual ), $formatted )
364  . "</tr>\n";
365  }
366 
367  return $s;
368  }
369 
370  function getRowAttrs( $row, $isSecond = false ) {
371  $arr = [];
372 
373  if ( $row->am_customised ) {
374  $arr['class'] = 'allmessages-customised';
375  }
376 
377  if ( !$isSecond ) {
378  $arr['id'] = Sanitizer::escapeId( 'msg_' . $this->getLanguage()->lcfirst( $row->am_title ) );
379  }
380 
381  return $arr;
382  }
383 
384  function getCellAttrs( $field, $value ) {
385  if ( $this->mCurrentRow->am_customised && $field === 'am_title' ) {
386  return [ 'rowspan' => '2', 'class' => $field ];
387  } elseif ( $field === 'am_title' ) {
388  return [ 'class' => $field ];
389  } else {
390  return [
391  'lang' => $this->lang->getHtmlCode(),
392  'dir' => $this->lang->getDir(),
393  'class' => $field
394  ];
395  }
396  }
397 
398  // This is not actually used, as getStartBody is overridden above
399  function getFieldNames() {
400  return [
401  'am_title' => $this->msg( 'allmessagesname' )->text(),
402  'am_default' => $this->msg( 'allmessagesdefault' )->text()
403  ];
404  }
405 
406  function getTitle() {
407  return SpecialPage::getTitleFor( 'Allmessages', false );
408  }
409 
410  function isFieldSortable( $x ) {
411  return false;
412  }
413 
414  function getDefaultSort() {
415  return '';
416  }
417 
418  function getQueryInfo() {
419  return '';
420  }
421 
422 }
AllMessagesTablePager\getCellAttrs
getCellAttrs( $field, $value)
Get any extra attributes to be applied to the given cell.
Definition: AllMessagesTablePager.php:384
ContextSource\getConfig
getConfig()
Get the Config object.
Definition: ContextSource.php:68
AllMessagesTablePager
Definition: AllMessagesTablePager.php:32
AllMessagesTablePager\$displayPrefix
$displayPrefix
Definition: AllMessagesTablePager.php:34
$request
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2612
AllMessagesTablePager\$custom
null bool $custom
Definition: AllMessagesTablePager.php:46
AllMessagesTablePager\formatValue
formatValue( $field, $value)
Format a table cell.
Definition: AllMessagesTablePager.php:303
TablePager\getHiddenFields
getHiddenFields( $blacklist=[])
Get <input type="hidden"> elements for use in a method="get" form.
Definition: TablePager.php:390
ContextSource\msg
msg()
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:187
AllMessagesTablePager\$prefix
$prefix
Definition: AllMessagesTablePager.php:34
Xml\tags
static tags( $element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:131
Xml\label
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
Definition: Xml.php:358
captcha-old.count
count
Definition: captcha-old.py:225
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=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) $result
Definition: hooks.txt:1954
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
TablePager\getTableClass
getTableClass()
Definition: TablePager.php:269
$s
$s
Definition: mergeMessageFileList.php:188
$linkRenderer
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 after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition: hooks.txt:1956
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
$res
$res
Definition: database.txt:21
AllMessagesTablePager\formatRow
formatRow( $row)
Definition: AllMessagesTablePager.php:350
ContextSource\getRequest
getRequest()
Get the WebRequest object.
Definition: ContextSource.php:78
Wikimedia\Rdbms\FakeResultWrapper
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
Definition: FakeResultWrapper.php:11
Xml\openElement
static openElement( $element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
Xml\languageSelector
static languageSelector( $selected, $customisedOnly=true, $inLanguage=null, $overrideAttrs=[], Message $msg=null)
Construct a language selector appropriate for use in a form or preferences.
Definition: Xml.php:204
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
AllMessagesTablePager\getTitle
getTitle()
Get the Title object.
Definition: AllMessagesTablePager.php:406
ContextSource\getLanguage
getLanguage()
Get the Language object.
Definition: ContextSource.php:143
Xml\fieldset
static fieldset( $legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
Definition: Xml.php:577
AllMessagesTablePager\getStartBody
getStartBody()
Definition: AllMessagesTablePager.php:281
AllMessagesTablePager\getCustomisedStatuses
static getCustomisedStatuses( $messageNames, $langcode='en', $foreign=false)
Determine which of the MediaWiki and MediaWiki_talk namespace pages exist.
Definition: AllMessagesTablePager.php:200
Language\getLocalisationCache
static getLocalisationCache()
Get the LocalisationCache instance.
Definition: Language.php:406
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
Title\newFromRow
static newFromRow( $row)
Make a Title object from a DB row.
Definition: Title.php:453
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
AllMessagesTablePager\$filter
$filter
Definition: AllMessagesTablePager.php:34
AllMessagesTablePager\buildForm
buildForm()
Definition: AllMessagesTablePager.php:96
AllMessagesTablePager\reallyDoQuery
reallyDoQuery( $offset, $limit, $descending)
This function normally does a database query to get the results; we need to make a pretend result usi...
Definition: AllMessagesTablePager.php:248
NS_MEDIAWIKI_TALK
const NS_MEDIAWIKI_TALK
Definition: Defines.php:71
TablePager
Table-based display with a user-selectable sort order.
Definition: TablePager.php:28
AllMessagesTablePager\getDefaultSort
getDefaultSort()
The database field name used as a default sort order.
Definition: AllMessagesTablePager.php:414
$limit
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 as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers please use GetContentModels hook to make them known to core if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1049
Linker\makeExternalLink
static makeExternalLink( $url, $text, $escape=true, $linktype='', $attribs=[], $title=null)
Make an external link.
Definition: Linker.php:838
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
AllMessagesTablePager\getFieldNames
getFieldNames()
An array mapping database field names to a textual description of the field name, for use in the tabl...
Definition: AllMessagesTablePager.php:399
Html\hidden
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:746
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:538
$value
$value
Definition: styleTest.css.php:45
AllMessagesTablePager\getRowAttrs
getRowAttrs( $row, $isSecond=false)
Definition: AllMessagesTablePager.php:370
AllMessagesTablePager\getQueryInfo
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
Definition: AllMessagesTablePager.php:418
AllMessagesTablePager\isFieldSortable
isFieldSortable( $x)
Return true if the named field should be sortable by the UI, false otherwise.
Definition: AllMessagesTablePager.php:410
plain
either a plain
Definition: hooks.txt:2007
IndexPager\DIR_DESCENDING
const DIR_DESCENDING
Definition: IndexPager.php:76
Xml\radioLabel
static radioLabel( $label, $name, $value, $id, $checked=false, $attribs=[])
Convenience function to build an HTML radio button with a label.
Definition: Xml.php:444
Xml\closeElement
static closeElement( $element)
Shortcut to close an XML element.
Definition: Xml.php:118
$dbr
if(! $regexes) $dbr
Definition: cleanup.php:94
AllMessagesTablePager\$langcode
$langcode
Definition: AllMessagesTablePager.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
AllMessagesTablePager\getAllMessages
getAllMessages( $descending)
Definition: AllMessagesTablePager.php:174
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
Xml\input
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
Definition: Xml.php:274
NS_MEDIAWIKI
const NS_MEDIAWIKI
Definition: Defines.php:70
AllMessagesTablePager\$mLimitsShown
$mLimitsShown
Definition: AllMessagesTablePager.php:36
TablePager\getLimitSelect
getLimitSelect( $attribs=[])
Get a "<select>" element which has options for each of the allowed limits.
Definition: TablePager.php:342
AllMessagesTablePager\__construct
__construct( $page, $conds, $langObj=null)
Definition: AllMessagesTablePager.php:48
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
Language
Internationalisation code.
Definition: Language.php:35
Xml\submitButton
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
Definition: Xml.php:459
AllMessagesTablePager\$lang
Language $lang
Definition: AllMessagesTablePager.php:41
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
wfArrayToCgi
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
Definition: GlobalFunctions.php:408
$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