33 parent::__construct(
'Listgrouprights' );
45 $out->addModuleStyles(
'mediawiki.special' );
47 $out->wrapWikiMsg(
"<div class=\"mw-listgrouprights-key\">\n$1\n</div>",
'listgrouprights-key' );
50 Xml::openElement(
'table', [
'class' =>
'wikitable mw-listgrouprights-table' ] ) .
58 $groupPermissions = $config->get(
'GroupPermissions' );
59 $revokePermissions = $config->get(
'RevokePermissions' );
60 $addGroups = $config->get(
'AddGroups' );
61 $removeGroups = $config->get(
'RemoveGroups' );
62 $groupsAddToSelf = $config->get(
'GroupsAddToSelf' );
63 $groupsRemoveFromSelf = $config->get(
'GroupsRemoveFromSelf' );
64 $allGroups = array_unique( array_merge(
65 array_keys( $groupPermissions ),
66 array_keys( $revokePermissions ),
67 array_keys( $addGroups ),
68 array_keys( $removeGroups ),
69 array_keys( $groupsAddToSelf ),
70 array_keys( $groupsRemoveFromSelf )
74 foreach ( $allGroups
as $group ) {
75 $permissions = isset( $groupPermissions[$group] )
76 ? $groupPermissions[$group]
78 $groupname = ( $group ==
'*' )
82 $msg = $this->
msg(
'group-' . $groupname );
83 $groupnameLocalized = !$msg->isBlank() ? $msg->text() : $groupname;
85 $msg = $this->
msg(
'grouppage-' . $groupname )->inContentLanguage();
86 $grouppageLocalized = !$msg->isBlank() ?
91 if ( $group ==
'*' || !$grouppageLocalizedTitle ) {
93 $grouppage = htmlspecialchars( $groupnameLocalized );
96 $grouppageLocalizedTitle,
97 htmlspecialchars( $groupnameLocalized )
101 if ( $group ===
'user' ) {
105 $this->
msg(
'listgrouprights-members' )->escaped()
107 } elseif ( !in_array( $group, $config->get(
'ImplicitGroups' ) ) ) {
110 $this->
msg(
'listgrouprights-members' )->escaped(),
112 [
'group' => $group ]
119 $revoke = isset( $revokePermissions[$group] ) ? $revokePermissions[$group] : [];
120 $addgroups = isset( $addGroups[$group] ) ? $addGroups[$group] : [];
121 $removegroups = isset( $removeGroups[$group] ) ? $removeGroups[$group] : [];
122 $addgroupsSelf = isset( $groupsAddToSelf[$group] ) ? $groupsAddToSelf[$group] : [];
123 $removegroupsSelf = isset( $groupsRemoveFromSelf[$group] )
124 ? $groupsRemoveFromSelf[$group]
129 <td>$grouppage$grouplink</td>
132 $addgroupsSelf, $removegroupsSelf ) .
144 $namespaceProtection = $this->
getConfig()->get(
'NamespaceProtection' );
146 if ( count( $namespaceProtection ) == 0 ) {
150 $header = $this->
msg(
'listgrouprights-namespaceprotection-header' )->parse();
153 'class' =>
'mw-headline',
154 'id' => $wgParser->guessSectionNameFromWikiText(
$header )
160 $this->
msg(
'listgrouprights-namespaceprotection-namespace' )->
text()
165 $this->
msg(
'listgrouprights-namespaceprotection-restrictedto' )->
text()
169 ksort( $namespaceProtection );
170 foreach ( $namespaceProtection
as $namespace => $rights ) {
176 $namespaceText = $this->
msg(
'blanknamespace' )->text();
178 $namespaceText = $wgContLang->convertNamespace( $namespace );
188 htmlspecialchars( $namespaceText ),
190 [
'namespace' => $namespace ]
196 if ( !is_array( $rights ) ) {
197 $rights = [ $rights ];
200 foreach ( $rights
as $right ) {
203 'listgrouprights-right-display',
207 [
'class' =>
'mw-listgrouprights-right-name' ],
234 private function formatPermissions( $permissions, $revoke, $add, $remove, $addSelf, $removeSelf ) {
236 foreach ( $permissions
as $permission => $granted ) {
238 if ( $granted && ( !isset( $revoke[$permission] ) || !$revoke[$permission] ) ) {
239 $r[] = $this->
msg(
'listgrouprights-right-display',
241 '<span class="mw-listgrouprights-right-name">' . $permission .
'</span>'
245 foreach ( $revoke
as $permission => $revoked ) {
247 $r[] = $this->
msg(
'listgrouprights-right-revoked',
249 '<span class="mw-listgrouprights-right-name">' . $permission .
'</span>'
261 'removegroup' => $remove,
262 'addgroup-self' => $addSelf,
263 'removegroup-self' => $removeSelf
266 foreach ( $changeGroups
as $messageKey => $changeGroup ) {
267 if ( $changeGroup ===
true ) {
270 $r[] = $this->
msg(
'listgrouprights-' . $messageKey .
'-all' )->escaped();
271 } elseif ( is_array( $changeGroup ) ) {
272 $changeGroup = array_intersect( array_values( array_unique( $changeGroup ) ), $allGroups );
273 if ( count( $changeGroup ) ) {
276 $r[] = $this->
msg(
'listgrouprights-' . $messageKey,
277 $lang->listToText( array_map( [
'User',
'makeGroupLinkWiki' ], $changeGroup ) ),
278 count( $changeGroup )
287 return '<ul><li>' . implode(
"</li>\n<li>", $r ) .
'</li></ul>';
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
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
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...
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
if(!isset($args[0])) $lang
msg()
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
when a variable name is used in a it is silently declared as a new local masking the global
static getAllGroups()
Return the set of defined explicit groups.
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
static closeElement($element)
Shortcut to close an XML element.
Parent class for all special pages.
static getCanonicalName($index)
Returns the canonical (English) name for a given index.
formatPermissions($permissions, $revoke, $add, $remove, $addSelf, $removeSelf)
Create a user-readable list of permissions from the given array.
static openElement($element, $attribs=null)
This opens an XML element.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
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
This special page lists all defined user groups and the associated rights.
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 link($target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
static escapeId($id, $options=[])
Given a value, escape it so that it can be used in an id attribute and return it. ...
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
getConfig()
Shortcut to get main config object.
outputNamespaceProtectionInfo()
getLanguage()
Shortcut to get user's language.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
static getValidNamespaces()
Returns an array of the namespaces (by integer id) that exist on the wiki.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
static getRightDescription($right)
Get the description of a given right.
execute($par)
Show the special page.