Go to the documentation of this file.
43 parent::__construct(
$name, $restriction );
45 $this->watchlistFilterGroupDefinition = [
46 'name' =>
'watchlist',
47 'title' =>
'rcfilters-filtergroup-watchlist',
50 'isFullCoverage' =>
true,
54 'label' =>
'rcfilters-filter-watchlist-watched-label',
55 'description' =>
'rcfilters-filter-watchlist-watched-description',
56 'cssClassSuffix' =>
'watched',
57 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
58 return $rc->getAttribute(
'wl_user' );
62 'name' =>
'watchednew',
63 'label' =>
'rcfilters-filter-watchlist-watchednew-label',
64 'description' =>
'rcfilters-filter-watchlist-watchednew-description',
65 'cssClassSuffix' =>
'watchednew',
66 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
67 return $rc->getAttribute(
'wl_user' ) &&
68 $rc->getAttribute(
'rc_timestamp' ) &&
69 $rc->getAttribute(
'wl_notificationtimestamp' ) &&
70 $rc->getAttribute(
'rc_timestamp' ) >= $rc->getAttribute(
'wl_notificationtimestamp' );
74 'name' =>
'notwatched',
75 'label' =>
'rcfilters-filter-watchlist-notwatched-label',
76 'description' =>
'rcfilters-filter-watchlist-notwatched-description',
77 'cssClassSuffix' =>
'notwatched',
78 'isRowApplicableCallable' =>
function ( $ctx, $rc ) {
79 return $rc->getAttribute(
'wl_user' ) ===
null;
84 'queryCallable' =>
function ( $specialPageClassName,
$context,
$dbr,
85 &
$tables, &$fields, &$conds, &$query_options, &$join_conds, $selectedValues ) {
86 sort( $selectedValues );
87 $notwatchedCond =
'wl_user IS NULL';
88 $watchedCond =
'wl_user IS NOT NULL';
89 $newCond =
'rc_timestamp >= wl_notificationtimestamp';
91 if ( $selectedValues === [
'notwatched' ] ) {
92 $conds[] = $notwatchedCond;
96 if ( $selectedValues === [
'watched' ] ) {
97 $conds[] = $watchedCond;
101 if ( $selectedValues === [
'watchednew' ] ) {
102 $conds[] =
$dbr->makeList( [
109 if ( $selectedValues === [
'notwatched',
'watched' ] ) {
114 if ( $selectedValues === [
'notwatched',
'watchednew' ] ) {
115 $conds[] =
$dbr->makeList( [
125 if ( $selectedValues === [
'watched',
'watchednew' ] ) {
126 $conds[] = $watchedCond;
130 if ( $selectedValues === [
'notwatched',
'watched',
'watchednew' ] ) {
145 $feedFormat = $this->
getRequest()->getVal(
'feed' );
146 if ( !$this->
including() && $feedFormat ) {
148 $query[
'feedformat'] = $feedFormat ===
'atom' ?
'atom' :
'rss';
156 $out->setCdnMaxage( 10 );
159 if ( $lastmod ===
false ) {
164 '//meta.wikimedia.org/wiki/Special:MyLanguage/Help:Recent_changes',
174 if ( isset( $filterDefinition[
'showHideSuffix'] ) ) {
175 $filterDefinition[
'showHide'] =
'rc' . $filterDefinition[
'showHideSuffix'];
178 return $filterDefinition;
185 parent::registerFilters();
189 $this->
getUser()->isLoggedIn() &&
190 $this->
getUser()->isAllowed(
'viewmywatchlist' )
194 $watchlistGroup->getFilter(
'watched' )->setAsSupersetOf(
195 $watchlistGroup->getFilter(
'watchednew' )
202 $hideMinor = $significance->getFilter(
'hideminor' );
203 $hideMinor->setDefault(
$user->getBoolOption(
'hideminor' ) );
206 $hideBots = $automated->getFilter(
'hidebots' );
207 $hideBots->setDefault(
true );
210 if ( $reviewStatus !==
null ) {
212 if (
$user->getBoolOption(
'hidepatrolled' ) ) {
213 $reviewStatus->setDefault(
'unpatrolled' );
214 $legacyReviewStatus = $this->
getFilterGroup(
'legacyReviewStatus' );
215 $legacyHidePatrolled = $legacyReviewStatus->getFilter(
'hidepatrolled' );
216 $legacyHidePatrolled->setDefault(
true );
221 $hideCategorization = $changeType->getFilter(
'hidecategorization' );
222 if ( $hideCategorization !==
null ) {
224 $hideCategorization->setDefault(
$user->getBoolOption(
'hidecategorization' ) );
235 parent::parseParameters( $par, $opts );
237 $bits = preg_split(
'/\s*,\s*/', trim( $par ) );
238 foreach ( $bits
as $bit ) {
239 if ( is_numeric( $bit ) ) {
240 $opts[
'limit'] = $bit;
244 if ( preg_match(
'/^limit=(\d+)$/', $bit, $m ) ) {
245 $opts[
'limit'] = $m[1];
247 if ( preg_match(
'/^days=(\d+(?:\.\d+)?)$/', $bit, $m ) ) {
248 $opts[
'days'] = $m[1];
250 if ( preg_match(
'/^namespace=(.*)$/', $bit, $m ) ) {
251 $opts[
'namespace'] = $m[1];
253 if ( preg_match(
'/^tagfilter=(.*)$/', $bit, $m ) ) {
254 $opts[
'tagfilter'] = $m[1];
270 $fields = array_merge( $rcQuery[
'fields'], $fields );
271 $join_conds = array_merge( $join_conds, $rcQuery[
'joins'] );
274 if (
$user->isLoggedIn() &&
$user->isAllowed(
'viewmywatchlist' ) ) {
276 $fields[] =
'wl_user';
277 $fields[] =
'wl_notificationtimestamp';
278 $join_conds[
'watchlist'] = [
'LEFT JOIN', [
279 'wl_user' =>
$user->getId(),
281 'wl_namespace=rc_namespace'
287 $fields[] =
'page_latest';
288 $join_conds[
'page'] = [
'LEFT JOIN',
'rc_cur_id=page_id' ];
290 $tagFilter = $opts[
'tagfilter'] ? explode(
'|', $opts[
'tagfilter'] ) : [];
311 'ORDER BY' =>
'rc_timestamp DESC',
312 'LIMIT' => $opts[
'limit']
314 if ( in_array(
'DISTINCT', $query_options ) ) {
320 $orderByAndLimit[
'ORDER BY'] =
'rc_timestamp DESC, rc_id DESC';
321 $orderByAndLimit[
'GROUP BY'] =
'rc_timestamp, rc_id';
327 $query_options = array_merge( $orderByAndLimit, $query_options );
333 $conds + [
'rc_new' => [ 0, 1 ] ],
360 $query[
'action'] =
'feedrecentchanges';
361 $feedLimit = $this->
getConfig()->get(
'FeedLimit' );
362 if ( $query[
'limit'] > $feedLimit ) {
363 $query[
'limit'] = $feedLimit;
376 $limit = $opts[
'limit'];
378 $showWatcherCount = $this->
getConfig()->get(
'RCShowWatchingUsers' )
379 && $this->
getUser()->getOption(
'shownumberswatching' );
384 $list->initChangesListRows(
$rows );
386 $userShowHiddenCats = $this->
getUser()->getBoolOption(
'showhiddencats' );
387 $rclistOutput = $list->beginRecentChangesList();
398 # Skip CatWatch entries for hidden cats based on user preference
401 !$userShowHiddenCats &&
402 $rc->getParam(
'hidden-cat' )
407 $rc->counter = $counter++;
408 # Check if the page has been updated since the last visit
409 if ( $this->
getConfig()->get(
'ShowUpdatedMarker' )
410 && !empty( $obj->wl_notificationtimestamp )
412 $rc->notificationtimestamp = ( $obj->rc_timestamp >= $obj->wl_notificationtimestamp );
414 $rc->notificationtimestamp =
false;
416 # Check the number of users watching the page
417 $rc->numberofWatchingusers = 0;
418 if ( $showWatcherCount && $obj->rc_namespace >= 0 ) {
419 if ( !isset( $watcherCache[$obj->rc_namespace][$obj->rc_title] ) ) {
420 $watcherCache[$obj->rc_namespace][$obj->rc_title] =
421 MediaWikiServices::getInstance()->getWatchedItemStore()->countWatchers(
422 new TitleValue( (
int)$obj->rc_namespace, $obj->rc_title )
425 $rc->numberofWatchingusers = $watcherCache[$obj->rc_namespace][$obj->rc_title];
428 $changeLine = $list->recentChangesLine( $rc, !empty( $obj->wl_user ), $counter );
429 if ( $changeLine !==
false ) {
430 $rclistOutput .= $changeLine;
434 $rclistOutput .= $list->endRecentChangesList();
436 if (
$rows->numRows() === 0 ) {
439 $this->
getOutput()->setStatusCode( 404 );
442 $this->
getOutput()->addHTML( $rclistOutput );
455 $defaults = $opts->getAllValues();
456 $nondefaults = $opts->getChangedValues();
462 $panel[] = $this->
optionsPanel( $defaults, $nondefaults, $numRows );
466 $extraOptsCount =
count( $extraOpts );
471 foreach ( $extraOpts
as $name => $optionRow ) {
472 # Add submit button to the last row only
474 $addSubmit = ( $count === $extraOptsCount ) ? $submit :
'';
477 if ( is_array( $optionRow ) ) {
480 [
'class' =>
'mw-label mw-' .
$name .
'-label' ],
485 [
'class' =>
'mw-input' ],
486 $optionRow[1] . $addSubmit
491 [
'class' =>
'mw-input',
'colspan' => 2 ],
492 $optionRow . $addSubmit
499 $unconsumed = $opts->getUnconsumedValues();
500 foreach ( $unconsumed
as $key =>
$value ) {
508 $panelString = implode(
"\n", $panel );
511 $this->
msg(
'recentchanges-legend' )->
text(),
513 [
'class' =>
'rcoptions cloptions' ]
520 [
'class' =>
'rcfilters-container' ]
525 [
'class' =>
'rcfilters-spinner' ],
528 [
'class' =>
'rcfilters-spinner-bounce' ]
536 [
'class' =>
'rcfilters-head' ],
537 $rcfilterContainer . $rcoptions
542 $this->
getOutput()->addHTML( $loadingContainer );
544 $this->
getOutput()->addHTML( $rcoptions );
556 $message = $this->
msg(
'recentchangestext' )->inContentLanguage();
557 if ( !$message->isDisabled() ) {
558 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
571 $content = $parserOutput->getText( [
572 'enableSectionEditLinks' =>
false,
575 $this->
getOutput()->addParserOutputMetadata( $parserOutput );
578 'lang' => $contLang->getHtmlCode(),
579 'dir' => $contLang->getDir(),
582 $topLinksAttributes = [
'class' =>
'mw-recentchanges-toplinks' ];
586 $collapsedState = $this->
getRequest()->getCookie(
'rcfilters-toplinks-collapsed-state' );
588 $topLinksAttributes[
'class' ] .= $collapsedState !==
'expanded' ?
589 ' mw-recentchanges-toplinks-collapsed' :
'';
592 $contentTitle =
new OOUI\ButtonWidget( [
593 'classes' => [
'mw-recentchanges-toplinks-title' ],
594 'label' =>
new OOUI\HtmlSnippet( $this->
msg(
'rcfilters-other-review-tools' )->parse() ),
596 'indicator' => $collapsedState !==
'expanded' ?
'down' :
'up',
597 'flags' => [
'progressive' ],
602 [
'class' =>
'mw-recentchanges-toplinks-content mw-collapsible-content' ],
607 $content = $contentTitle . $contentWrapper;
613 $topLinksAttributes = array_merge( $topLinksAttributes, $langAttributes );
629 $opts->consumeValues( [
630 'namespace',
'invert',
'associated',
'tagfilter'
637 $opts[
'tagfilter'],
false, $this->
getContext() );
638 if (
count( $tagFilter ) ) {
639 $extraOpts[
'tagfilter'] = $tagFilter;
643 if ( $this->
getName() ===
'Recentchanges' ) {
644 Hooks::run(
'SpecialRecentChangesPanel', [ &$extraOpts, $opts ] );
654 parent::addModules();
656 $out->addModules(
'mediawiki.special.recentchanges' );
668 $lastmod =
$dbr->selectField(
'recentchanges',
'MAX(rc_timestamp)',
'', __METHOD__ );
681 [
'selected' => $opts[
'namespace'],
'all' =>
'' ],
682 [
'name' =>
'namespace',
'id' =>
'namespace' ]
686 $this->
msg(
'invert' )->
text(),
'invert',
'nsinvert',
688 [
'title' => $this->
msg(
'tooltip-invert' )->
text() ]
691 $this->
msg(
'namespace_association' )->
text(),
'associated',
'nsassociated',
693 [
'title' => $this->
msg(
'tooltip-namespace_association' )->
text() ]
696 return [ $nsLabel,
"$nsSelect $invert $associated" ];
710 $categories = array_map(
'trim', explode(
'|', $opts[
'categories'] ) );
712 if ( !
count( $categories ) ) {
718 foreach ( $categories
as $cat ) {
730 foreach (
$rows as $k => $r ) {
732 $id = $nt->getArticleID();
734 continue; #
Page might have been deleted...
736 if ( !in_array( $id, $articles ) ) {
739 if ( !isset( $a2r[$id] ) ) {
747 if ( !
count( $articles ) || !
count( $cats ) ) {
753 $catFind->
seed( $articles, $cats, $opts[
'categories_any'] ?
'OR' :
'AND' );
754 $match = $catFind->run();
758 foreach ( $match
as $id ) {
759 foreach ( $a2r[$id]
as $rev ) {
761 $newrows[$k] = $rowsarr[$k];
784 'data-params' => json_encode( $override ),
785 'data-keys' => implode(
',', array_keys( $override ) ),
798 $options = $nondefaults + $defaults;
801 $msg = $this->
msg(
'rclegend' );
802 if ( !$msg->isDisabled() ) {
803 $note .=
'<div class="mw-rclegend">' . $msg->parse() .
"</div>\n";
811 [
'from' =>
'' ], $nondefaults );
813 $noteFromMsg = $this->
msg(
'rcnotefrom' )
820 ->numParams( $numRows );
823 [
'class' =>
'rcnotefrom' ],
824 $noteFromMsg->parse()
829 [
'class' =>
'rcoptions-listfromreset' ],
830 $this->
msg(
'parentheses' )->rawParams( $resetLink )->parse()
835 # Sort data for display and make sure it's unique after we've added user data.
836 $linkLimits = $config->get(
'RCLinkLimits' );
839 $linkLimits = array_unique( $linkLimits );
841 $linkDays = $config->get(
'RCLinkDays' );
844 $linkDays = array_unique( $linkDays );
852 $cl =
$lang->pipeList( $cl );
860 $dl =
$lang->pipeList( $dl );
862 $showhide = [
'show',
'hide' ];
867 $msg = $filter->getShowHide();
868 $linkMessage = $this->
msg( $msg .
'-' . $showhide[1 -
$options[$key]] );
871 if ( !$linkMessage->exists() ) {
872 $linkMessage = $this->
msg( $showhide[1 -
$options[$key]] );
876 [ $key => 1 -
$options[$key] ], $nondefaults );
879 'class' =>
"$msg rcshowhideoption clshowhideoption",
880 'data-filter-name' => $filter->getName(),
883 if ( $filter->isFeatureAvailableOnStructuredUi( $this ) ) {
884 $attribs[
'data-feature-in-structured-ui'] =
true;
890 $this->
msg( $msg )->rawParams(
$link )->parse()
896 $now =
$lang->userTimeAndDate( $timestamp,
$user );
897 $timenow =
$lang->userTime( $timestamp,
$user );
898 $datenow =
$lang->userDate( $timestamp,
$user );
899 $pipedLinks =
'<span class="rcshowhide">' .
$lang->pipeList( $links ) .
'</span>';
901 $rclinks =
'<span class="rclinks">' . $this->
msg(
'rclinks' )->rawParams( $cl, $dl,
'' )
902 ->parse() .
'</span>';
905 $this->
msg(
'rclistfrom' )->rawParams( $now, $timenow, $datenow )->parse(),
906 [
'from' => $timestamp ],
910 return "{$note}$rclinks<br />$pipedLinks<br />$rclistfrom";
922 $systemPrefValue = $this->
getUser()->getIntOption(
'rclimit' );
925 return $this->
getUser()->getIntOption( static::$limitPreferenceName, $systemPrefValue );
929 return $systemPrefValue;
getPageTitle( $subpage=false)
Get a self-referential title object.
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new recentchanges object.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
Marks HTML that shouldn't be escaped.
parseParameters( $par, FormOptions $opts)
Process $par and put options found in $opts.
msg( $key)
Wrapper around wfMessage that sets the current context.
doMainQuery( $tables, $fields, $conds, $query_options, $join_conds, FormOptions $opts)
@inheritDoc
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 and they can depend only on the ResourceLoaderContext $context
getOutput()
Get the OutputPage being used for this instance.
if(!isset( $args[0])) $lang
filterByCategories(&$rows, FormOptions $opts)
Filter $rows by categories set in $opts.
namespaceFilterForm(FormOptions $opts)
Creates the choose namespace selection.
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
makeLegend()
Return the legend displayed within the fieldset.
__construct( $name='Recentchanges', $restriction='')
Special page which uses a ChangesList to show query results.
outputChangesList( $rows, $opts)
Build and output the actual changes list.
this hook is for auditing only 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 & $tables
$watchlistFilterGroupDefinition
registerFilters()
@inheritDoc
static $daysPreferenceName
getLanguage()
Shortcut to get user's language.
isIncludable()
Whether it's allowed to transclude the special page via {{Special:Foo/params}}.
getName()
Get the name of this Special Page.
static openElement( $element, $attribs=null)
This opens an XML element.
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
outputNoResults()
Add the "no results" message to the output.
static fieldset( $legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
addModules()
Add page-specific modules.
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
static $savedQueriesPreferenceName
getConfig()
Shortcut to get main config object.
namespace and then decline to actually register it file or subcat img or subcat $title
addFeedLinks( $params)
Adds RSS/atom links.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
convertParamsForLink( $params)
Convert parameters values from true/false to 1/0 so they are not omitted by wfArrayToCgi() T38524.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
runMainQueryHook(&$tables, &$fields, &$conds, &$query_options, &$join_conds, $opts)
isStructuredFilterUiEnabled()
Check whether the structured filter UI is enabled.
transformFilterDefinition(array $filterDefinition)
@inheritDoc
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 & $attribs
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
getFeedQuery()
Get URL query parameters for action=feedrecentchanges API feed of current recent changes view.
getUser()
Shortcut to get the User executing this instance.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
execute( $subpage)
Main execution point.
getDB()
Return a IDatabase object for reading.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
static singleton()
Get the signleton instance of this class.
getContext()
Gets the context this SpecialPage is executed in.
static $collapsedPreferenceName
static newFromContext(IContextSource $context, array $groups=[])
Fetch an appropriate changes list class for the specified context Some users might want to use an enh...
seed( $articleIds, $categories, $mode='AND', $maxdepth=-1)
Initializes the instance.
Allows to change the fields on the form that will be generated $name
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
static namespaceSelector(array $params=[], array $selectAttribs=[])
Build a drop-down box for selecting a namespace.
static tags( $element, $attribs, $contents)
Same as Xml::element(), but does not escape contents.
The "CategoryFinder" class takes a list of articles, creates an internal representation of all their ...
getFilterGroup( $groupName)
Gets a specified ChangesListFilterGroup by name.
getRequest()
Get the WebRequest being used for this instance.
const NONE
Signifies that no options in the group are selected, meaning the group has no effect.
A special page that lists last changes made to the wiki.
optionsPanel( $defaults, $nondefaults, $numRows)
Creates the options panel.
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
areFiltersInConflict()
Check if filters are in conflict and guaranteed to return no results.
setTopText(FormOptions $opts)
Send the text to be displayed above the options.
doHeader( $opts, $numRows)
Set the text to be displayed above the changes.
static closeElement( $element)
Shortcut to close an XML element.
getExtraOptions( $opts)
Get options to be displayed in a form.
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 $rows
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
outputFeedLinks()
Output feed links.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
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
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
static $limitPreferenceName
usually copyright or history_copyright This message must be in HTML not wikitext & $link
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
registerFiltersFromDefinitions(array $definition)
Register filters from a definition object.
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
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
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
setBottomText(FormOptions $opts)
Send the text to be displayed after the options.
getDefaultLimit()
Get the default value of the number of changes to display when loading the result set.
getOptions()
Get the current FormOptions for this request.
including( $x=null)
Whether the special page is being evaluated via transclusion.
checkLastModified()
Get last modified date, for client caching Don't use this if we are using the patrol feature,...
makeOptionsLink( $title, $override, $options, $active=false)
Makes change an option link which carries all the other options.
getLegacyShowHideFilters()
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
Represents a page (or page fragment) title within MediaWiki.
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