Extensión:Info
Info Release status: estable |
|||
---|---|---|---|
Implementación | User interface | ||
Descripción | Adds a info tab on all normal pages, allowing for quick info displaying | ||
Autor(es) | Suriyaa Sundararuban (Suriyaa Kudotalk) | ||
Mantenedor(es) | iSC Inc. | ||
Última versión | 1.0.0 (2017-09-04) | ||
MediaWiki | 1.29+ | ||
PHP | 5.6+ | ||
Cambios de la base de datos | No | ||
Licencia | GNU General Public License 2.0 or later | ||
Descarga | GitHub: Note: |
||
|
|||
Translate the Info extension if it is available at translatewiki.net | |||
Verificar uso y versión de la matriz. |
The Info extension adds a info tab on all normal pages, that allows us to display the site information quickly.
Instalación
- Download the latest release y extrae los archivos en el directorio «
Info
» dentro del directorioextensions/
existente.
- Añade el siguiente código a tu LocalSettings.php (preferiblemente al final):
require_once "$IP/extensions/Info/Info.php";
- Configurar si requirió
Listo – Navega a Special:Version en tu wiki para verificar que la apariencia se haya instalado correctamente.
Configuración
This extension comes with an extra user right called "info" to allow fine grained control of its usage. By default it is assigned to the "user" user group, i.e. to all users with an account who are logged in. In case you would like to also assign it to anonymous users for them to make use of page info display functionality without the need of a post add the following code to your "LocalSettings.php" file right after invoking this extension:
$wgGroupPermissions['*']['info'] = true;
Revoking the permission for the "user" user group and granting it at the same time only to the "sysop" user group may be done by adding the following two lines:
$wgGroupPermissions['user']['info'] = false;
$wgGroupPermissions['sysop']['info'] = true;
![]() | This extension was migrated from git.suriyaa.tk code and checked into a GitHub software repository. |