« MediaWiki/Mes Extensions/CategoryControl2 » : différence entre les versions

Aucun résumé des modifications
Ligne 8 : Ligne 8 :


=== Syntaxe ===
=== Syntaxe ===
Configuration dans LocalSettings.php
Configuration dans LocalSettings.php<br>
exemple:
example:
{{syntaxhighlight |lang=php |code=
{{syntaxhighlight |lang=php |code=
$wgCategoryPermissions['Catégories_cachées']['*'][] = 'sysop'; // Sysops can do anything they want with this category.
$wgCategoryPermissions['Catégories_cachées']['*'][] = 'sysop'; // Sysops can do anything they want with this category.

Version du 11 août 2022 à 12:20


MediaWiki/Mes Extensions/CategoryControl2
Nom CategoryControl2
Lien Extension:CategoryControl2

Description

Gérer les accès aux catégories suivant l'utilisateur

  MediaWiki/Mes_Extensions


Syntaxe

Configuration dans LocalSettings.php
example:

$wgCategoryPermissions['Catégories_cachées']['*'][] = 'sysop'; // Sysops can do anything they want with this category.
$wgCategoryPermissions['Catégories_cachées']['read'] = array('sysop', 'family'); // Sysops can do anything they want with this category.
$wgCategoryPermissions['Private']['*'][] = 'sysop'; // Sysops can do anything they want with this category.
$wgCategoryPermissions['Private']['read'] = array('sysop', 'family'); // Sysops can do anything they want with this category.