Aucun résumé des modifications |
|||
| Ligne 8 : | Ligne 8 : | ||
=== Syntaxe === | === Syntaxe === | ||
Configuration dans LocalSettings.php | Configuration dans LocalSettings.php<br> | ||
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. | ||
| MediaWiki/Mes Extensions/CategoryControl2 | |
|---|---|
| Nom | CategoryControl2 |
| Lien | |
Gérer les accès aux catégories suivant l'utilisateur
MediaWiki/Mes_Extensions
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.