Aucun résumé des modifications |
|||
| Ligne 8 : | Ligne 8 : | ||
=== Syntaxe === | === Syntaxe === | ||
Modifier le fichier {{File| LocalSettings.php}}<br> | Modifier le fichier {{File| LocalSettings.php}}<br><br> | ||
example: | example: | ||
{{syntaxhighlight |lang=php |code= | {{syntaxhighlight |lang=php |code= | ||
| MediaWiki/Mes Extensions/CategoryControl2 | |
|---|---|
| Nom | CategoryControl2 |
| Lien | |
Gérer les accès aux catégories suivant l'utilisateur
MediaWiki/Mes_Extensions
Modifier le fichier
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.