MediaWiki  REL1_31
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 }
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:793
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:722
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:18
Sanitizer\escapeIdForAttribute
static escapeIdForAttribute( $id, $mode=self::ID_PRIMARY)
Given a section name or other user-generated or otherwise unsafe string, escapes it to be a valid HTM...
Definition: Sanitizer.php:1261
$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:864
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:37
Html\closeElement
static closeElement( $element)
Returns "</$element>".
Definition: Html.php:309
SpecialListGrants\__construct
__construct()
Definition: SpecialListgrants.php:31
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:761
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:527
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
User\getRightDescription
static getRightDescription( $right)
Get the description of a given right.
Definition: User.php:5418
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:22
User\getGrantName
static getGrantName( $grant)
Get the name of a given grant.
Definition: User.php:5431
Html\openElement
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Definition: Html.php:251
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:231
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:629