Handbuch:$wgShowEXIF

From mediawiki.org
This page is a translated version of the page Manual:$wgShowEXIF and the translation is 31% complete.
EXIF: $wgShowEXIF
Show EXIF data at the end of file description pages.
Eingeführt in Version:1.5.0
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(Wahrheitswert)
Standardwert:null (1.38.2+)
true if supported, else false (see below). (1.5-1.38.1)

Details

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

Standardwert

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.