Manual:$wgShowEXIF/pl
Appearance
EXIF: $wgShowEXIF | |
---|---|
Show EXIF data at the end of file description pages. |
|
Wprowadzono w wersji: | 1.5.0 |
Usunięto w wersji: | nadal w użyciu |
Dozwolone wartości: | (boolean) |
Domyślna wartość: | null (1.38.2+)true if supported, else false (see below). (1.5-1.38.1) |
Inne ustawienia: Alfabetycznie | Według funkcji |
Szczegóły
Show EXIF data at the end of file description pages. Turned on by default if EXIF functionality is available. Requires PHP's EXIF extension [1].
For Windows users: To enable EXIF functions, add the following lines to the "Windows extensions" section of your php.ini file:
extension=extensions/php_mbstring.dll
extension=extensions/php_exif.dll
Default value
The default value is to enable the showing of EXIF data if the system supports it.
This is worked out by checking whether the exif_read_data()
function exists:
function_exists( 'exif_read_data' );
Do not manually set this value to true
, as errors may occur if this function is not defined.
You may however set it manually to false
if you wish to disable this functionality.