Manual:$wgGrantPermissions/id
| Hak pengguna, kontrol akses dan pemantauan: $wgGrantPermissions | |
|---|---|
| Used to define grants and assign permissions to them. |
|
| Diperkenalkan pada versi: | 1.27.0 (Gerrit change 259062; git #ef5bd734) |
| Dihapus pada versi: | Masih digunakan |
| Nilai yang diizinkan: | (two-dimensional array of booleans) |
| Nilai tetapan: | See MainConfigSchema.php |
| Pengaturan lainnya: Menurut alfabet | Menurut fungsi | |
Details
$wgGrantPermissions is a two-dimensional array indexed by grants and available permissions.
The value is a boolean; false is equivalent to unsetting the key.
Grants are used to give external software limited access to an account; for example, by OAuth or by bot passwords. When a user account is accessed via some grants-based mechanism, to use some permission both an appropriate user group and an appropriate grant is required.
This configuration value should usually be set by extensions, not site administrators.
New grants can simply be created by using a new first-level key.
Such keys should be added to $wgGrantPermissionGroups as well.
Hibah dikelola secara dalam oleh layanan GrantsInfo, dan dapat dilihat lewat Special:ListGrants.
The user-visible name of a grant can be defined via the grant-<name> message.
Example
$wgGrantPermissions['basic']['ipblock-exempt'] = true;
This allows external tools using a user account to ignore IP blocks if the user has that ability and has given the basic grant to the tool.