MediaWiki  1.29.1
SpecialEditTags.php
Go to the documentation of this file.
1 <?php
31  protected $wasSaved = false;
32 
34  private $submitClicked;
35 
37  private $ids;
38 
40  private $targetObj;
41 
43  private $typeName;
44 
46  private $revList;
47 
49  private $isAllowed;
50 
52  private $reason;
53 
54  public function __construct() {
55  parent::__construct( 'EditTags', 'changetags' );
56  }
57 
58  public function doesWrites() {
59  return true;
60  }
61 
62  public function execute( $par ) {
63  $this->checkPermissions();
64  $this->checkReadOnly();
65 
66  $output = $this->getOutput();
67  $user = $this->getUser();
68  $request = $this->getRequest();
69 
70  // Check blocks
71  if ( $user->isBlocked() ) {
72  throw new UserBlockedError( $user->getBlock() );
73  }
74 
75  $this->setHeaders();
76  $this->outputHeader();
77 
78  $this->getOutput()->addModules( [ 'mediawiki.special.edittags',
79  'mediawiki.special.edittags.styles' ] );
80 
81  $this->submitClicked = $request->wasPosted() && $request->getBool( 'wpSubmit' );
82 
83  // Handle our many different possible input types
84  $ids = $request->getVal( 'ids' );
85  if ( !is_null( $ids ) ) {
86  // Allow CSV from the form hidden field, or a single ID for show/hide links
87  $this->ids = explode( ',', $ids );
88  } else {
89  // Array input
90  $this->ids = array_keys( $request->getArray( 'ids', [] ) );
91  }
92  $this->ids = array_unique( array_filter( $this->ids ) );
93 
94  // No targets?
95  if ( count( $this->ids ) == 0 ) {
96  throw new ErrorPageError( 'tags-edit-nooldid-title', 'tags-edit-nooldid-text' );
97  }
98 
99  $this->typeName = $request->getVal( 'type' );
100  $this->targetObj = Title::newFromText( $request->getText( 'target' ) );
101 
102  // sanity check of parameter
103  switch ( $this->typeName ) {
104  case 'logentry':
105  case 'logging':
106  $this->typeName = 'logentry';
107  break;
108  default:
109  $this->typeName = 'revision';
110  break;
111  }
112 
113  // Allow the list type to adjust the passed target
114  // Yuck! Copied straight out of SpecialRevisiondelete, but it does exactly
115  // what we want
116  $this->targetObj = RevisionDeleter::suggestTarget(
117  $this->typeName === 'revision' ? 'revision' : 'logging',
118  $this->targetObj,
119  $this->ids
120  );
121 
122  $this->isAllowed = $user->isAllowed( 'changetags' );
123 
124  $this->reason = $request->getVal( 'wpReason' );
125  // We need a target page!
126  if ( is_null( $this->targetObj ) ) {
127  $output->addWikiMsg( 'undelete-header' );
128  return;
129  }
130  // Give a link to the logs/hist for this page
131  $this->showConvenienceLinks();
132 
133  // Either submit or create our form
134  if ( $this->isAllowed && $this->submitClicked ) {
135  $this->submit();
136  } else {
137  $this->showForm();
138  }
139 
140  // Show relevant lines from the tag log
141  $tagLogPage = new LogPage( 'tag' );
142  $output->addHTML( "<h2>" . $tagLogPage->getName()->escaped() . "</h2>\n" );
144  $output,
145  'tag',
146  $this->targetObj,
147  '', /* user */
148  [ 'lim' => 25, 'conds' => [], 'useMaster' => $this->wasSaved ]
149  );
150  }
151 
155  protected function showConvenienceLinks() {
156  // Give a link to the logs/hist for this page
157  if ( $this->targetObj ) {
158  // Also set header tabs to be for the target.
159  $this->getSkin()->setRelevantTitle( $this->targetObj );
160 
161  $linkRenderer = $this->getLinkRenderer();
162  $links = [];
163  $links[] = $linkRenderer->makeKnownLink(
164  SpecialPage::getTitleFor( 'Log' ),
165  $this->msg( 'viewpagelogs' )->text(),
166  [],
167  [
168  'page' => $this->targetObj->getPrefixedText(),
169  'hide_tag_log' => '0',
170  ]
171  );
172  if ( !$this->targetObj->isSpecialPage() ) {
173  // Give a link to the page history
174  $links[] = $linkRenderer->makeKnownLink(
175  $this->targetObj,
176  $this->msg( 'pagehist' )->text(),
177  [],
178  [ 'action' => 'history' ]
179  );
180  }
181  // Link to Special:Tags
182  $links[] = $linkRenderer->makeKnownLink(
183  SpecialPage::getTitleFor( 'Tags' ),
184  $this->msg( 'tags-edit-manage-link' )->text()
185  );
186  // Logs themselves don't have histories or archived revisions
187  $this->getOutput()->addSubtitle( $this->getLanguage()->pipeList( $links ) );
188  }
189  }
190 
195  protected function getList() {
196  if ( is_null( $this->revList ) ) {
197  $this->revList = ChangeTagsList::factory( $this->typeName, $this->getContext(),
198  $this->targetObj, $this->ids );
199  }
200 
201  return $this->revList;
202  }
203 
208  protected function showForm() {
209  $userAllowed = true;
210 
211  $out = $this->getOutput();
212  // Messages: tags-edit-revision-selected, tags-edit-logentry-selected
213  $out->wrapWikiMsg( "<strong>$1</strong>", [
214  "tags-edit-{$this->typeName}-selected",
215  $this->getLanguage()->formatNum( count( $this->ids ) ),
216  $this->targetObj->getPrefixedText()
217  ] );
218 
219  $this->addHelpLink( 'Help:Tags' );
220  $out->addHTML( "<ul>" );
221 
222  $numRevisions = 0;
223  // Live revisions...
224  $list = $this->getList();
225  // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
226  for ( $list->reset(); $list->current(); $list->next() ) {
227  // @codingStandardsIgnoreEnd
228  $item = $list->current();
229  $numRevisions++;
230  $out->addHTML( $item->getHTML() );
231  }
232 
233  if ( !$numRevisions ) {
234  throw new ErrorPageError( 'tags-edit-nooldid-title', 'tags-edit-nooldid-text' );
235  }
236 
237  $out->addHTML( "</ul>" );
238  // Explanation text
239  $out->wrapWikiMsg( '<p>$1</p>', "tags-edit-{$this->typeName}-explanation" );
240 
241  // Show form if the user can submit
242  if ( $this->isAllowed ) {
243  $form = Xml::openElement( 'form', [ 'method' => 'post',
244  'action' => $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] ),
245  'id' => 'mw-revdel-form-revisions' ] ) .
246  Xml::fieldset( $this->msg( "tags-edit-{$this->typeName}-legend",
247  count( $this->ids ) )->text() ) .
248  $this->buildCheckBoxes() .
249  Xml::openElement( 'table' ) .
250  "<tr>\n" .
251  '<td class="mw-label">' .
252  Xml::label( $this->msg( 'tags-edit-reason' )->text(), 'wpReason' ) .
253  '</td>' .
254  '<td class="mw-input">' .
255  Xml::input(
256  'wpReason',
257  60,
258  $this->reason,
259  [ 'id' => 'wpReason', 'maxlength' => 100 ]
260  ) .
261  '</td>' .
262  "</tr><tr>\n" .
263  '<td></td>' .
264  '<td class="mw-submit">' .
265  Xml::submitButton( $this->msg( "tags-edit-{$this->typeName}-submit",
266  $numRevisions )->text(), [ 'name' => 'wpSubmit' ] ) .
267  '</td>' .
268  "</tr>\n" .
269  Xml::closeElement( 'table' ) .
270  Html::hidden( 'wpEditToken', $this->getUser()->getEditToken() ) .
271  Html::hidden( 'target', $this->targetObj->getPrefixedText() ) .
272  Html::hidden( 'type', $this->typeName ) .
273  Html::hidden( 'ids', implode( ',', $this->ids ) ) .
274  Xml::closeElement( 'fieldset' ) . "\n" .
275  Xml::closeElement( 'form' ) . "\n";
276  } else {
277  $form = '';
278  }
279  $out->addHTML( $form );
280  }
281 
285  protected function buildCheckBoxes() {
286  // If there is just one item, provide the user with a multi-select field
287  $list = $this->getList();
288  $tags = [];
289  if ( $list->length() == 1 ) {
290  $list->reset();
291  $tags = $list->current()->getTags();
292  if ( $tags ) {
293  $tags = explode( ',', $tags );
294  } else {
295  $tags = [];
296  }
297 
298  $html = '<table id="mw-edittags-tags-selector">';
299  $html .= '<tr><td>' . $this->msg( 'tags-edit-existing-tags' )->escaped() .
300  '</td><td>';
301  if ( $tags ) {
302  $html .= $this->getLanguage()->commaList( array_map( 'htmlspecialchars', $tags ) );
303  } else {
304  $html .= $this->msg( 'tags-edit-existing-tags-none' )->parse();
305  }
306  $html .= '</td></tr>';
307  $tagSelect = $this->getTagSelect( $tags, $this->msg( 'tags-edit-new-tags' )->plain() );
308  $html .= '<tr><td>' . $tagSelect[0] . '</td><td>' . $tagSelect[1];
309  } else {
310  // Otherwise, use a multi-select field for adding tags, and a list of
311  // checkboxes for removing them
312 
313  // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
314  for ( $list->reset(); $list->current(); $list->next() ) {
315  // @codingStandardsIgnoreEnd
316  $currentTags = $list->current()->getTags();
317  if ( $currentTags ) {
318  $tags = array_merge( $tags, explode( ',', $currentTags ) );
319  }
320  }
321  $tags = array_unique( $tags );
322 
323  $html = '<table id="mw-edittags-tags-selector-multi"><tr><td>';
324  $tagSelect = $this->getTagSelect( [], $this->msg( 'tags-edit-add' )->plain() );
325  $html .= '<p>' . $tagSelect[0] . '</p>' . $tagSelect[1] . '</td><td>';
326  $html .= Xml::element( 'p', null, $this->msg( 'tags-edit-remove' )->plain() );
327  $html .= Xml::checkLabel( $this->msg( 'tags-edit-remove-all-tags' )->plain(),
328  'wpRemoveAllTags', 'mw-edittags-remove-all' );
329  $i = 0; // used for generating checkbox IDs only
330  foreach ( $tags as $tag ) {
331  $html .= Xml::element( 'br' ) . "\n" . Xml::checkLabel( $tag,
332  'wpTagsToRemove[]', 'mw-edittags-remove-' . $i++, false, [
333  'value' => $tag,
334  'class' => 'mw-edittags-remove-checkbox',
335  ] );
336  }
337  }
338 
339  // also output the tags currently applied as a hidden form field, so we
340  // know what to remove from the revision/log entry when the form is submitted
341  $html .= Html::hidden( 'wpExistingTags', implode( ',', $tags ) );
342  $html .= '</td></tr></table>';
343 
344  return $html;
345  }
346 
359  protected function getTagSelect( $selectedTags, $label ) {
360  $result = [];
361  $result[0] = Xml::label( $label, 'mw-edittags-tag-list' );
362 
363  $select = new XmlSelect( 'wpTagList[]', 'mw-edittags-tag-list', $selectedTags );
364  $select->setAttribute( 'multiple', 'multiple' );
365  $select->setAttribute( 'size', '8' );
366 
368  $tags = array_unique( array_merge( $tags, $selectedTags ) );
369 
370  // Values of $tags are also used as <option> labels
371  $select->addOptions( array_combine( $tags, $tags ) );
372 
373  $result[1] = $select->getHTML();
374  return $result;
375  }
376 
382  protected function submit() {
383  // Check edit token on submission
384  $request = $this->getRequest();
385  $token = $request->getVal( 'wpEditToken' );
386  if ( $this->submitClicked && !$this->getUser()->matchEditToken( $token ) ) {
387  $this->getOutput()->addWikiMsg( 'sessionfailure' );
388  return false;
389  }
390 
391  // Evaluate incoming request data
392  $tagList = $request->getArray( 'wpTagList' );
393  if ( is_null( $tagList ) ) {
394  $tagList = [];
395  }
396  $existingTags = $request->getVal( 'wpExistingTags' );
397  if ( is_null( $existingTags ) || $existingTags === '' ) {
398  $existingTags = [];
399  } else {
400  $existingTags = explode( ',', $existingTags );
401  }
402 
403  if ( count( $this->ids ) > 1 ) {
404  // multiple revisions selected
405  $tagsToAdd = $tagList;
406  if ( $request->getBool( 'wpRemoveAllTags' ) ) {
407  $tagsToRemove = $existingTags;
408  } else {
409  $tagsToRemove = $request->getArray( 'wpTagsToRemove' );
410  }
411  } else {
412  // single revision selected
413  // The user tells us which tags they want associated to the revision.
414  // We have to figure out which ones to add, and which to remove.
415  $tagsToAdd = array_diff( $tagList, $existingTags );
416  $tagsToRemove = array_diff( $existingTags, $tagList );
417  }
418 
419  if ( !$tagsToAdd && !$tagsToRemove ) {
420  $status = Status::newFatal( 'tags-edit-none-selected' );
421  } else {
422  $status = $this->getList()->updateChangeTagsOnAll( $tagsToAdd,
423  $tagsToRemove, null, $this->reason, $this->getUser() );
424  }
425 
426  if ( $status->isGood() ) {
427  $this->success();
428  return true;
429  } else {
430  $this->failure( $status );
431  return false;
432  }
433  }
434 
438  protected function success() {
439  $this->getOutput()->setPageTitle( $this->msg( 'actioncomplete' ) );
440  $this->getOutput()->wrapWikiMsg( "<div class=\"successbox\">\n$1\n</div>",
441  'tags-edit-success' );
442  $this->wasSaved = true;
443  $this->revList->reloadFromMaster();
444  $this->reason = ''; // no need to spew the reason back at the user
445  $this->showForm();
446  }
447 
452  protected function failure( $status ) {
453  $this->getOutput()->setPageTitle( $this->msg( 'actionfailed' ) );
454  $this->getOutput()->addWikiText( '<div class="errorbox">' .
455  $status->getWikiText( 'tags-edit-failure' ) .
456  '</div>'
457  );
458  $this->showForm();
459  }
460 
461  public function getDescription() {
462  return $this->msg( 'tags-edit-title' )->text();
463  }
464 
465  protected function getGroupName() {
466  return 'pagetools';
467  }
468 }
ChangeTagsList
Generic list for change tagging.
Definition: ChangeTagsList.php:25
SpecialPage\getPageTitle
getPageTitle( $subpage=false)
Get a self-referential title object.
Definition: SpecialPage.php:628
SpecialEditTags\getList
getList()
Get the list object for this request.
Definition: SpecialEditTags.php:195
SpecialEditTags\submit
submit()
UI entry point for form submission.
Definition: SpecialEditTags.php:382
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
$request
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2612
UserBlockedError
Show an error when the user tries to do something whilst blocked.
Definition: UserBlockedError.php:27
SpecialEditTags\$reason
string $reason
Definition: SpecialEditTags.php:52
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:675
SpecialEditTags\getTagSelect
getTagSelect( $selectedTags, $label)
Returns a <select multiple>=""> element with a list of change tags that can be applied by users.
Definition: SpecialEditTags.php:359
UnlistedSpecialPage
Shortcut to construct a special page which is unlisted by default.
Definition: UnlistedSpecialPage.php:29
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
$status
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 $status
Definition: hooks.txt:1049
$user
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
Definition: hooks.txt:246
SpecialPage\checkPermissions
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
Definition: SpecialPage.php:306
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:63
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
SpecialPage\getSkin
getSkin()
Shortcut to get the skin being used for this instance.
Definition: SpecialPage.php:695
SpecialEditTags\$ids
array $ids
Target ID list.
Definition: SpecialEditTags.php:37
SpecialPage\getLanguage
getLanguage()
Shortcut to get user's language.
Definition: SpecialPage.php:705
SpecialEditTags\success
success()
Report that the submit operation succeeded.
Definition: SpecialEditTags.php:438
Xml\openElement
static openElement( $element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
SpecialEditTags\showForm
showForm()
Show a list of items that we will operate on, and show a form which allows the user to modify the tag...
Definition: SpecialEditTags.php:208
SpecialEditTags\buildCheckBoxes
buildCheckBoxes()
Definition: SpecialEditTags.php:285
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
XmlSelect
Class for generating HTML <select> or <datalist> elements.
Definition: XmlSelect.php:26
SpecialEditTags\__construct
__construct()
Definition: SpecialEditTags.php:54
Xml\fieldset
static fieldset( $legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
Definition: Xml.php:577
SpecialEditTags\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialEditTags.php:465
SpecialPage\addHelpLink
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Definition: SpecialPage.php:785
$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
SpecialEditTags\showConvenienceLinks
showConvenienceLinks()
Show some useful links in the subtitle.
Definition: SpecialEditTags.php:155
$tag
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 $tag
Definition: hooks.txt:1028
SpecialEditTags\$targetObj
Title $targetObj
Title object for target parameter.
Definition: SpecialEditTags.php:40
SpecialEditTags\$isAllowed
bool $isAllowed
Whether user is allowed to perform the action.
Definition: SpecialEditTags.php:49
SpecialEditTags\$revList
ChangeTagsList $revList
Storing the list of items to be tagged.
Definition: SpecialEditTags.php:46
SpecialEditTags\execute
execute( $par)
Default execute method Checks user permissions.
Definition: SpecialEditTags.php:62
LogPage
Class to simplify the use of log pages.
Definition: LogPage.php:31
Xml\element
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:39
SpecialEditTags\$wasSaved
bool $wasSaved
Was the DB modified in this request.
Definition: SpecialEditTags.php:31
$output
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 & $output
Definition: hooks.txt:1049
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:685
LogEventsList\showLogExtract
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Definition: LogEventsList.php:564
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:648
Html\hidden
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:746
ChangeTags\listExplicitlyDefinedTags
static listExplicitlyDefinedTags()
Lists tags explicitly defined in the valid_tag table of the database.
Definition: ChangeTags.php:1212
SpecialPage\msg
msg()
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:746
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:665
SpecialEditTags\failure
failure( $status)
Report that the submit operation failed.
Definition: SpecialEditTags.php:452
plain
either a plain
Definition: hooks.txt:2007
SpecialEditTags\doesWrites
doesWrites()
Indicates whether this special page may perform database writes.
Definition: SpecialEditTags.php:58
SpecialPage\getLinkRenderer
getLinkRenderer()
Definition: SpecialPage.php:856
Title
Represents a title within MediaWiki.
Definition: Title.php:39
reason
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition plus the scripts used to control compilation and installation of the executable as a special the source code distributed need not include anything that is normally and so on of the operating system on which the executable unless that component itself accompanies the executable If distribution of executable or object code is made by offering access to copy from a designated then offering equivalent access to copy the source code from the same place counts as distribution of the source even though third parties are not compelled to copy the source along with the object code You may not or distribute the Program except as expressly provided under this License Any attempt otherwise to sublicense or distribute the Program is and will automatically terminate your rights under this License parties who have received or from you under this License will not have their licenses terminated so long as such parties remain in full compliance You are not required to accept this since you have not signed it nothing else grants you permission to modify or distribute the Program or its derivative works These actions are prohibited by law if you do not accept this License by modifying or distributing the you indicate your acceptance of this License to do and all its terms and conditions for distributing or modifying the Program or works based on it Each time you redistribute the the recipient automatically receives a license from the original licensor to distribute or modify the Program subject to these terms and conditions You may not impose any further restrictions on the recipients exercise of the rights granted herein You are not responsible for enforcing compliance by third parties to this License as a consequence of a court judgment or allegation of patent infringement or for any other reason(not limited to patent issues)
Xml\closeElement
static closeElement( $element)
Shortcut to close an XML element.
Definition: Xml.php:118
SpecialEditTags\$typeName
string $typeName
Deletion type, may be revision or logentry.
Definition: SpecialEditTags.php:43
ChangeTagsList\factory
static factory( $typeName, IContextSource $context, Title $title, array $ids)
Creates a ChangeTags*List of the requested type.
Definition: ChangeTagsList.php:41
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
SpecialEditTags
Special page for adding and removing change tags to individual revisions.
Definition: SpecialEditTags.php:29
SpecialEditTags\$submitClicked
bool $submitClicked
True if the submit button was clicked, and the form was posted.
Definition: SpecialEditTags.php:34
Xml\input
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
Definition: Xml.php:274
SpecialPage\checkReadOnly
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
Definition: SpecialPage.php:319
SpecialPage\$linkRenderer
MediaWiki Linker LinkRenderer null $linkRenderer
Definition: SpecialPage.php:66
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
SpecialEditTags\getDescription
getDescription()
Returns the name that goes in the <h1> in the special page itself, and also the name that will be l...
Definition: SpecialEditTags.php:461
RevisionDeleter\suggestTarget
static suggestTarget( $typeName, $target, array $ids)
Suggest a target for the revision deletion.
Definition: RevisionDeleter.php:198
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:583
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Xml\submitButton
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
Definition: Xml.php:459
Xml\checkLabel
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
Definition: Xml.php:419
$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