Manual:$wgImageLimits
Images: $wgImageLimits | |
---|---|
Limit images on image description pages to a user-selectable limit. |
|
Introduced in version: | 1.4.0 |
Removed in version: | still in use |
Allowed values: | (see below) |
Default value: | (see below) |
Other settings: Alphabetical | By Function
Details [edit]
This variable contains an array of 2-element arrays. Each of these defines a width/height pair describing a maximum image size (in pixels). The image sizes defined in this variable are used on the user preference page to allow the user to specify an image size-limit when viewing image pages. In order to reduce disk usage, limits can only be selected from this list.
If you change this array, you might also want to change the default option for image sizes on image pages. By default
$wgDefaultUserOptions['imagesize'] = 2;
which, by default, corresponds to 800x600 in this array.
If you are using a skin which has a fixed width for page content, you will probably want to make the maximum size equal to that width. Put these settings in your LocalSettings.php:
//Don't allow larger image sizes because they will ruin the page format $wgImageLimits = array ( array(320,240), array(500,375) ); // By default display the larger option $wgDefaultUserOptions['imagesize'] = 1;
This setting also determines the number and size of the thumbnail which are linked on the image page, just below the image.
Default Value [edit]
array ( array(320,240), array(640,480), array(800,600), array(1024,768), array(1280,1024), array(10000,10000) )
Language: | English • русский |
---|