MediaWiki  1.29.2
PermissionsError.php
Go to the documentation of this file.
1 <?php
30 
37  public function __construct( $permission, $errors = [] ) {
39 
40  if ( $permission === null && !$errors ) {
41  throw new \InvalidArgumentException( __METHOD__ .
42  ': $permission and $errors cannot both be empty' );
43  }
44 
45  $this->permission = $permission;
46 
47  if ( !count( $errors ) ) {
48  $groups = [];
49  foreach ( User::getGroupsWithPermission( $this->permission ) as $group ) {
50  $groups[] = UserGroupMembership::getLink( $group, RequestContext::getMain(), 'wiki' );
51  }
52 
53  if ( $groups ) {
54  $errors[] = [ 'badaccess-groups', $wgLang->commaList( $groups ), count( $groups ) ];
55  } else {
56  $errors[] = [ 'badaccess-group0' ];
57  }
58  }
59 
60  $this->errors = $errors;
61 
62  // Give the parent class something to work with
63  parent::__construct( 'permissionserrors', Message::newFromSpecifier( $errors[0] ) );
64  }
65 
66  public function report() {
67  global $wgOut;
68 
69  $wgOut->showPermissionsErrorPage( $this->errors, $this->permission );
70  $wgOut->output();
71  }
72 }
errors
if the prop value should be in the metadata multi language array can modify can modify indexed by page_id indexed by prefixed DB keys can modify can modify can modify this should be populated with an alert message to that effect to be fed to an HTMLForm object and populate $result with the reason in the form of error messages should be plain text with no special etc to show that they re errors
Definition: hooks.txt:1721
PermissionsError\__construct
__construct( $permission, $errors=[])
Definition: PermissionsError.php:37
captcha-old.count
count
Definition: captcha-old.py:225
PermissionsError
Show an error when a user tries to do something they do not have the necessary permissions for.
Definition: PermissionsError.php:28
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
UserGroupMembership\getLink
static getLink( $ugm, IContextSource $context, $format, $userName=null)
Gets a link for a user group, possibly including the expiry date if relevant.
Definition: UserGroupMembership.php:346
$wgLang
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 $wgLang
Definition: design.txt:56
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
PermissionsError\$permission
$permission
Definition: PermissionsError.php:29
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:468
PermissionsError\$errors
$errors
Definition: PermissionsError.php:29
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
$wgOut
$wgOut
Definition: Setup.php:791
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
PermissionsError\report
report()
Output a report about the exception and takes care of formatting.
Definition: PermissionsError.php:66
User\getGroupsWithPermission
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
Definition: User.php:4743