MediaWiki  1.33.0
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 ( $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 }
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:796
SpecialListGrants
This special page lists all defined rights grants and the associated rights.
Definition: SpecialListgrants.php:30
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:725
$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 When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:780
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
SpecialListGrants\__construct
__construct()
Definition: SpecialListgrants.php:31
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:764
SpecialListGrants\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialListgrants.php:88
SpecialListGrants\execute
execute( $par)
Show the special page.
Definition: SpecialListgrants.php:39
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:531
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
text
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
Definition: All_system_messages.txt:1267
User\getRightDescription
static getRightDescription( $right)
Get the description of a given right.
Definition: User.php:5415
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
User\getGrantName
static getGrantName( $grant)
Get the name of a given grant.
Definition: User.php:5428
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:633