Extension:Info/de-formal

From mediawiki.org
This page is a translated version of the page Extension:Info and the translation is 17% complete.
MediaWiki extensions manual
Info
Release status: unstable
Implementation User interface
Description Adds an info tab on all normal pages, allowing for quick info displaying
Author(s) Suriyaa Sundararuban (Suriyaa KudoDiskussion)
Maintainer(s) Suriyaa Sundararuban
Latest version 2.0.0 (2019-06-08)
MediaWiki 1.29+
PHP 5.6+
Database changes No
License GNU General Public License 2.0 or later
Download

The Info extension adds an info tab on all normal pages, that allows us to display the site information quickly.

Installation

  • Die Download the latest release und die Datei(en) in ein Verzeichnis namens Info im Ordner extensions/ ablegen.
  • Wird von git aus installiert, ist Composer auszuführen, um PHP-Abhängigkeiten zu installieren, indem composer install --no-dev im Erweiterungsverzeichnis ausgeführt wird. (Siehe task T173141 für mögliche Komplikationen.)
  • Folgenden Code am Ende Ihrer LocalSettings.php -Datei hinzufügen:
    wfLoadExtension( 'Info' );
    
  • Führen Sie das Aktualisierungsskript aus, welches automatisch die notwendigen Datenbanktabellen erstellt, die diese Erweiterung braucht.
  • Configure if required
  • Yes Done – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Konfiguration

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;