Manual:$wgSkipSkins/ru
Темы оформления: $wgSkipSkins | |
---|---|
Specify the name of skins that should not be presented in the list of available skins. |
|
Введено в версии: | 1.4.5 |
Удалено в версии: | всё ещё используется |
Допустимые значения: | не определено |
Значение по умолчанию: | [] |
Другие настройки: По алфавиту | По функциональности |
Details
Specify the names of skins that should not be presented in the list of available skins.
skins/
folder and made them available. That way it was impossible to activate those skins as they were activated automatically. You could only later hide them again - that is what this option was there for initially. With MediaWiki 1.23, skin autodiscovery got deprecated. It's now used to support hiding internal or other custom skins not meant to be made available for general use. For instance the bespoke skin used by API documentation, which removes sidebar and most user elements, is hidden with this variable.Use for preventing users from choosing one or more skins which you do not want to remove from the skins
directory.
Example, in LocalSettings.php
put:
# Remove skins from skin choice of user preferences
$wgSkipSkins = [
'minerva',
'monobook',
'timeless'
];
Above would remove all skin choices but Vector. Omit from above array any choices that you want to remain.
Changing user preferences when removing a skin
In versions up to 1.16 (at most), upon registration the name of the default skin as provided by $wgDefaultSkin
is copied to the user preferences of the user.
When you later make this skin inaccessible, use the maintenance script Manual:UserOptions.php to make sure that this skin is also no longer chosen by any user:
php userOptions.php skin --old "monobook" --new "vector"
This will change the skin for all registered users, who have selected Monobook, to Vector.