Manual:$wgShowEXIF
Jump to navigation
Jump to search
EXIF: $wgShowEXIF | |
---|---|
Dosya açıklama sayfalarının sonunda EXIF verilerini gösterin. |
|
Sürümde tanıtıldı: | 1.5.0 |
Sürümde kaldırıldı: | hala kullanımda |
İzin verilen değerler: | (boole) |
Varsayılan değer: | Destekleniyorsa true, aksi takdirde false (aşağıya bakın). |
Diğer ayarlar: Alfabetik | İşlevsel olarak |
Ayrıntılar
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
Varsayılan değer
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.