Extension:Info/it

Category:GPL licensed extensions/it
Manuale sulle Estensioni MediaWiki
Info
Stato della release: instabileCategory:Unstable extensions/it
Implementazione Interfaccia utenteCategory:User interface extensions/it
Descrizione Adds an info tab on all normal pages, allowing for quick info displaying
Autore(i) Suriyaa Sundararuban (Suriyaa Kudodiscussione)
Mantenuta da Suriyaa Sundararuban
Versione 2.0.0 (2019-06-08)
MediaWiki 1.29+Category:Extensions with manual MediaWiki version/it
PHP 5.6+
Modifiche al Database No
Licenza GNU General Public License 2.0 o successivo
Scaricare Category:Extensions in GitHub version control/it
Category:All extensions/itCategory:Extensions not in ExtensionJson/it

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

Installazione

  • {{$3|[[$2|Scarica]]|Scarica}} e sposta il/i file in una directory chiamata Info nella tua cartella extensions/.
  • Solo durante l'installazione da git eseguire Composer per installare le dipendenze PHP, immettendo composer install --no-dev nella directory dell'estensione. (Vedere T173141 per potenziali complicazioni.)Category:Extensions requiring Composer with git/it
  • Aggiungi il seguente codice al tuo $LocalSettings (preferibilmente alla fine):
    wfLoadExtension( 'Info' );
    
  • Esegui lo script di aggiornamento, che creerà automaticamente nel database le tavole necessarie a questa estensione.
  • Configurare se necessario
  • Yes Done – Naviga in Special:Version nella tua wiki per verificare che l'estensione sia stata installata correttamente.

Configurazione

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;
Category:All extensions/it Category:Extensions in GitHub version control/it Category:Extensions not in ExtensionJson/it Category:Extensions requiring Composer with git/it Category:Extensions with manual MediaWiki version/it Category:GPL licensed extensions/it Category:LocalisationCacheRecache extensions/it Category:SkinTemplateNavigation extensions/it Category:Unstable extensions/it Category:User interface extensions/it