Manual:$wgShowEXIF
EXIF: $wgShowEXIF | |
---|---|
Show EXIF data at the end of file description pages. |
|
導入されたバージョン: | 1.5.0 |
除去されたバージョン: | 使用中 |
許容される値: | (真偽値) |
既定値: | null (1.38.2+)サポートされている場合 true 、いなければfalse (下記参照). (1.5-1.38.1) |
その他の設定: アルファベット順 | 機能順 |
詳細
Show EXIF data at the end of file description pages. Turned on by default if EXIF functionality is available. PHP の EXIF 拡張機能 [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
既定値
既定値は、システムがサポートしている場合、EXIFデータの表示を有効にします。
This is worked out by checking whether the exif_read_data()
function exists:
function_exists( 'exif_read_data' );
この関数が定義されていない場合、エラーが発生する可能性があるため、この値を手動でtrue
に設定しないでください。
You may however set it manually to false
if you wish to disable this functionality.