Opas:$wgThumbLimits
Thumbnail settings: $wgThumbLimits | |
---|---|
Luettelo kuvien pikkukoista, josta käyttäjät voivat valita. |
|
Introduced in version: | 1.5.0 |
Removed in version: | Still in use |
Allowed values: | (joukko positiivisia kokonaislukuja) |
Default value: | (katso alta) |
Other settings: Alphabetical | By function |
Tiedot
Users can select a default image thumbnail size in their preferences, which is used for all images displayed as thumbnails that lack an explicitly defined size. In order to reduce disk usage, users can only select a value from this list.
$wgImageLimits
. For errors such as "Error creating thumbnail: File with dimensions greater than 12.5 MP", see $wgMaxImageArea .
Oletusarvot
MediaWiki version: | ≥ 1.5 |
$wgThumbLimits = [
120,
150,
180,
200,
250,
300
];
Esimerkki
In order to reduce disk usage, the number of different values selectable from a list may by reduced. Lisää nämä asetukset tiedostoosi LocalSettings.php :
// Don't allow more than three thumb sizes to reduce disk usage
$wgThumbLimits = array(
120, // pienoiskuvakoko 0
250, // pienoiskuvakoko 1
300 // pienoiskuvakoko 2
);
If you change this array, you also want to change the default user option
for thumb sizes on pages.
Each thumb size set is automatically associated with an integer value that may be used for the "thumbsize" user option.
This value always starts with "0" for the lowest thumb size set in the array and increases by 1 per additional thumb size defined, e.g. if five different thumb sizes were set the lowest value for the user option is "0" while "4" is the highest.
// By default display the midsize option
$wgDefaultUserOptions['thumbsize'] = 1; // pienoiskuvakoko 250