Manual:Configuração de aparências
This page explains how to configure skins on a wiki for administrators.
Esta página contém informações abrangentes para os administradores sobre como configurar skins de uma Wiki. Por favor, consulte Help:Skins para obter informações gerais e Manual:Skinning para obter informações de desenvolvimento de novas skins.
Esta documentação aplica-se a MediaWiki 1.24 ou superior .
Download de skins
The MediaWiki tarball download comes pre-bundled with three skins:
However, if you have downloaded MediaWiki from Git or from a nightly version, or if you want to install additional skins, you will need to separately download the code for that skin or skins.
Many MediaWiki skins are contained in the Wikimedia Git repository (see the full listing here). You can download tarballs of skins from the skin distributor.
To download one of the skins in this group via Git, you should make a call like the following:
git clone https://gerrit.wikimedia.org/r/mediawiki/skins/[name of skin]
e.g.: To get the default skin Vector, you should give the following from the MediaWiki-core/skins/
directory:
git clone https://gerrit.wikimedia.org/r/mediawiki/skins/Vector
Checkout an appropriate release of the skin. mudar para o novo diretório e execute:
git checkout REL1_27 (ou de outra versão ou tag)
After you have obtained the folder of a skin's files, place it as a subdirectory of /skins
in your MediaWiki installation (you can place the Git repository there directly).
Habilitando skins
For any skin in your /skins directory that you wish to use, you must enable it in your LocalSettings.php file. Por exemplo, para permitir Vector, adicione o seguinte. If you have multiple skins, each must be enabled with a separate statement:
// mw.v 1.24.x or less require_once "$IP/skins/Vector/Vector.php"; // mw.v 1.25.x or above wfLoadSkin( 'Vector' );
(This is equivalent to enabling an extension, only in a different directory.)
etapas adicionais podem ser necessárias, dependendo da escolha da skin. Detailed installation instructions are available on each skin's page on mediawiki.org; for example, for Vector see Skin:Vector#Installation. Instructions for all other skins are analogous.
Definir a aparência padrão para a wiki
A default skin should be set for new users of a wiki by setting the variable $wgDefaultSkin
in LocalSettings.php
to the lowercase skin name specified in the skin file. Users can still change their skin by going to their preferences page, unless you uninstall or suppress all other skins, or disable the preference altogether (see below). For example:
$wgDefaultSkin = 'vector';
Changing these values on an existing wiki will automatically change the setting of all users who have been using the previous default skin. There is a maintenance script to change users' preferences (userOptions.php ), but you will most likely not need to use it.
If you do not change this value, Vector will be the default skin.
Desinstalando skins
To uninstall a skin, remove the wfLoadSkin
(or require_once
for older versions) line from your LocalSettings.php file.
You may remove the skin files from the skins/
directory afterwards.
If any users have been using the skin you just uninstalled, MediaWiki will automatically switch them to the default skin of the wiki.
Suppressing skins without uninstalling
The administrator can limit the skin choices that are offered site-wide in user's preferences by listing skin(s) to suppress in the $wgSkipSkins
array. This might be useful if you want to test a new skin without letting users see it. To do this, put something like this in LocalSettings.php
:
// To remove various skins from the User Preferences choices
$wgSkipSkins = array( "cologneblue", "monobook" );
You will be able to preview the skin using the useskin URL parameter.
Site-wide CSS modifications
MediaWiki allows administrators to specify site-wide CSS rules to be added to every page rendered.
These rules can be added by editing the page Gadget-site.css (old Common.css)) on your wiki, if $wgUseSiteCss
is set to true.
In addition to a global stylesheet, one can also specify CSS rules to be used only in certain skins (see Manual:Interface/Stylesheets).
User CSS modifications
Users can also specify their own CSS rules by creating the page "User:Username/common.css".
The CSS on this page is then applied to whatever skin the user is using.
If the website is changed to a different default skin, the user's custom CSS will continue to work just as before.
This feature can be enabled by setting $wgAllowUserCss
to true in LocalSettings.php
.
A user can also apply CSS to a specific skin by creating the page "User:Username/skinname.css".
If a user uses the MonoBook skin for example, they would edit the page Special:MyPage/monobook.css.
Disable site users' ability to choose skins in user preferences
Versão do MediaWiki: | ≥ 1.16 |
The system administrator can completely remove the "Skin" option so that it does not show up at all in User Preferences. This makes sense if your site will use a customized skin and would not look right in any other skin.
To do it, add a new line containing the following code to LocalSettings.php. It will remove the "Skin" option from preferences and the possibility to use the useskin
parameter in the URL.
$wgHiddenPrefs[] = 'skin';