49 parent::__construct( $page->getContext() );
50 $this->mIndexField =
'am_title';
52 $this->mConds = $conds;
55 $this->mLimitsShown = [ 20, 50, 100, 250, 500, 5000 ];
59 $this->talk = $this->
msg(
'talkpagelinktext' )->escaped();
61 $this->lang = ( $langObj ? $langObj :
$wgContLang );
62 $this->langcode = $this->lang->getCode();
63 $this->foreign = !$this->lang->equals(
$wgContLang );
67 $this->filter =
$request->getVal(
'filter',
'all' );
68 if ( $this->filter ===
'all' ) {
71 $this->custom = ( $this->filter ===
'unmodified' );
76 Title::makeTitleSafe( NS_MEDIAWIKI,
$request->getVal(
'prefix',
null ) ) :
80 $this->displayPrefix =
$prefix->getDBkey();
81 $this->prefix =
'/^' . preg_quote( $this->displayPrefix,
'/' ) .
'/i';
83 $this->displayPrefix =
false;
84 $this->prefix =
false;
89 if ( $this->foreign ) {
97 $attrs = [
'id' =>
'mw-allmessages-form-lang',
'name' =>
'lang' ];
98 $msg =
wfMessage(
'allmessages-language' );
99 $langSelect = Xml::languageSelector( $this->langcode,
false,
null, $attrs, $msg );
101 $out = Xml::openElement(
'form', [
103 'action' => $this->
getConfig()->
get(
'Script' ),
104 'id' =>
'mw-allmessages-form'
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" .
110 <td class="mw-label">' .
111 Xml::label( $this->
msg(
'allmessages-prefix' )->
text(),
'mw-allmessages-form-prefix' ) .
113 <td class=\"mw-input\">" .
117 str_replace(
'_',
' ', $this->displayPrefix ),
118 [
'id' =>
'mw-allmessages-form-prefix' ]
123 <td class='mw-label'>" .
124 $this->
msg(
'allmessages-filter' )->escaped() .
126 <td class='mw-input'>" .
127 Xml::radioLabel( $this->
msg(
'allmessages-filter-unmodified' )->
text(),
130 'mw-allmessages-form-filter-unmodified',
131 ( $this->filter ===
'unmodified' )
133 Xml::radioLabel( $this->
msg(
'allmessages-filter-all' )->
text(),
136 'mw-allmessages-form-filter-all',
137 ( $this->filter ===
'all' )
139 Xml::radioLabel( $this->
msg(
'allmessages-filter-modified' )->
text(),
142 'mw-allmessages-form-filter-modified',
143 ( $this->filter ===
'modified' )
148 <td class=\"mw-label\">" . $langSelect[0] .
"</td>\n
149 <td class=\"mw-input\">" . $langSelect[1] .
"</td>\n
153 <td class="mw-label">' .
154 Xml::label( $this->
msg(
'table_pager_limit_label' )->
text(),
'mw-table_pager_limit_label' ) .
156 <td class="mw-input">' .
157 $this->
getLimitSelect( [
'id' =>
'mw-table_pager_limit_label' ] ) .
162 Xml::submitButton( $this->
msg(
'allmessages-filter-submit' )->
text() ) .
166 Xml::closeElement(
'table' ) .
167 $this->
getHiddenFields( [
'title',
'prefix',
'filter',
'lang',
'limit' ] ) .
168 Xml::closeElement(
'fieldset' ) .
169 Xml::closeElement(
'form' );
175 $messageNames = Language::getLocalisationCache()->getSubitemList(
'en',
'messages' );
178 $messageNames = array_map( [ $this->lang,
'ucfirst' ], $messageNames );
181 rsort( $messageNames );
183 asort( $messageNames );
186 return $messageNames;
205 [
'page_namespace',
'page_title' ],
208 [
'USE INDEX' =>
'name_title' ]
210 $xNames = array_flip( $messageNames );
212 $pageFlags = $talkFlags = [];
218 $titleParts = explode(
'/',
$s->page_title );
219 if ( count( $titleParts ) === 2 &&
221 isset( $xNames[$titleParts[0]] )
223 $exists = $titleParts[0];
225 } elseif ( isset( $xNames[
$s->page_title] ) ) {
226 $exists =
$s->page_title;
229 $title = Title::newFromRow(
$s );
230 if ( $exists && $title->inNamespace( NS_MEDIAWIKI ) ) {
231 $pageFlags[$exists] =
true;
233 $talkFlags[$exists] =
true;
237 return [
'pages' => $pageFlags,
'talks' => $talkFlags ];
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 )
261 $actual =
wfMessage( $key )->inLanguage( $this->langcode )->plain();
262 $default =
wfMessage( $key )->inLanguage( $this->langcode )->useDatabase(
false )->plain();
263 $result->result[] = [
265 'am_actual' => $actual,
266 'am_default' => $default,
267 'am_customised' => $customised,
268 'am_talk_exists' => isset( $statuses[
'talks'][$key] )
273 if ( $count === $limit ) {
283 return Xml::openElement(
'table', [
284 'class' =>
"mw-datatable $tableClass",
285 'id' =>
'mw-allmessagestable'
289 <th rowspan=\"2\">" .
290 $this->
msg(
'allmessagesname' )->escaped() .
"
293 $this->
msg(
'allmessagesdefault' )->escaped() .
298 $this->
msg(
'allmessagescurrent' )->escaped() .
300 </tr></thead><tbody>\n";
304 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
307 $title = Title::makeTitle( NS_MEDIAWIKI,
$value . $this->suffix );
311 'title' =>
'Special:SearchTranslations',
312 'group' =>
'mediawiki',
313 'grouppath' =>
'mediawiki',
317 $this->
msg(
'allmessages-filter-translate' )->
text()
320 if ( $this->mCurrentRow->am_customised ) {
328 if ( $this->mCurrentRow->am_talk_exists ) {
337 return $title .
' ' .
338 $this->
msg(
'parentheses' )->rawParams( $talk )->escaped() .
340 $this->
msg(
'parentheses' )->rawParams( $translation )->escaped();
344 return Sanitizer::escapeHtmlAllowEntities(
$value );
352 $s = parent::formatRow( $row );
355 if ( $row->am_customised ) {
356 $s .= Xml::openElement(
'tr', $this->
getRowAttrs( $row,
true ) );
357 $formatted = strval( $this->
formatValue(
'am_actual', $row->am_actual ) );
359 if ( $formatted ===
'' ) {
360 $formatted =
' ';
363 $s .= Xml::tags(
'td', $this->
getCellAttrs(
'am_actual', $row->am_actual ), $formatted )
373 if ( $row->am_customised ) {
374 $arr[
'class'] =
'allmessages-customised';
378 $arr[
'id'] = Sanitizer::escapeIdForAttribute(
379 'msg_' . $this->
getLanguage()->lcfirst( $row->am_title )
387 if ( $this->mCurrentRow->am_customised && $field ===
'am_title' ) {
388 return [
'rowspan' =>
'2',
'class' => $field ];
389 } elseif ( $field ===
'am_title' ) {
390 return [
'class' => $field ];
393 'lang' => $this->lang->getHtmlCode(),
394 'dir' => $this->lang->getDir(),
403 'am_title' => $this->
msg(
'allmessagesname' )->text(),
404 'am_default' => $this->
msg(
'allmessagesdefault' )->text()
409 return SpecialPage::getTitleFor(
'Allmessages',
false );
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Internationalisation code.
static makeExternalLink( $url, $text, $escape=true, $linktype='', $attribs=[], $title=null)
Make an external link.
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 local content language as $wgContLang
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
namespace being checked & $result
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
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
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
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