Jump to content

Extension:Info/pl

From mediawiki.org
This page is a translated version of the page Extension:Info and the translation is 17% complete.
Podręcznik rozszerzeń MediaWiki
Info
Status wydania: niestabilne
Realizacja Interfejs użytkownika
Opis Adds an info tab on all normal pages, allowing for quick info displaying
Autor(zy) Suriyaa Sundararuban (Suriyaa Kudodyskusja)
Opiekun(owie) Suriyaa Sundararuban
Ostatnia wersja 2.0.0 (2019-06-08)
MediaWiki 1.29+
PHP 5.6+
Zmiany w bazie danych Nie
Licencja Licencja GNU General Public License 2.0 lub późniejsza
Pobieranie

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

Instalacja

  • Download i umieść plik(i) w katalogu o nazwie Info w swoim katalogu extensions/.
  • Tylko w przypadku instalacji z repozytorium git należy uruchomić Composer, aby zainstalować zależności PHP, poprzez wywołanie composer install --no-dev w katalogu rozszerzenia. (Zobacz zadanie T173141 w celu uzyskania informacji o możliwych komplikacjach.)
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'Info' );
    
  • Uruchom skrypt aktualizujący, który automatycznie stworzy potrzebne tabele dla tego rozszerzenia.
  • Configure if required
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Konfiguracja

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;