MediaWiki REL1_32
SpecialListgrants.php
Go to the documentation of this file.
1<?php
31 function __construct() {
32 parent::__construct( 'Listgrants' );
33 }
34
39 public function execute( $par ) {
40 $this->setHeaders();
41 $this->outputHeader();
42
43 $out = $this->getOutput();
44 $out->addModuleStyles( 'mediawiki.special' );
45
46 $out->addHTML(
47 \Html::openElement( 'table',
48 [ 'class' => 'wikitable mw-listgrouprights-table' ] ) .
49 '<tr>' .
50 \Html::element( 'th', null, $this->msg( 'listgrants-grant' )->text() ) .
51 \Html::element( 'th', null, $this->msg( 'listgrants-rights' )->text() ) .
52 '</tr>'
53 );
54
55 foreach ( $this->getConfig()->get( 'GrantPermissions' ) as $grant => $rights ) {
56 $descs = [];
57 $rights = array_filter( $rights ); // remove ones with 'false'
58 foreach ( $rights as $permission => $granted ) {
59 $descs[] = $this->msg(
60 'listgrouprights-right-display',
61 \User::getRightDescription( $permission ),
62 '<span class="mw-listgrants-right-name">' . $permission . '</span>'
63 )->parse();
64 }
65 if ( !count( $descs ) ) {
66 $grantCellHtml = '';
67 } else {
68 sort( $descs );
69 $grantCellHtml = '<ul><li>' . implode( "</li>\n<li>", $descs ) . '</li></ul>';
70 }
71
72 $id = Sanitizer::escapeIdForAttribute( $grant );
73 $out->addHTML( \Html::rawElement( 'tr', [ 'id' => $id ],
74 "<td>" .
75 $this->msg(
76 "listgrants-grant-display",
77 \User::getGrantName( $grant ),
78 "<span class='mw-listgrants-grant-name'>" . $id . "</span>"
79 )->parse() .
80 "</td>" .
81 "<td>" . $grantCellHtml . "</td>"
82 ) );
83 }
84
85 $out->addHTML( \Html::closeElement( 'table' ) );
86 }
87
88 protected function getGroupName() {
89 return 'users';
90 }
91}
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
This special page lists all defined rights grants and the associated rights.
execute( $par)
Show the special page.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
static getRightDescription( $right)
Get the description of a given right.
Definition User.php:5423
static getGrantName( $grant)
Get the name of a given grant.
Definition User.php:5436
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:894