Ignore:
Timestamp:
Aug 25, 2004, 11:09:09 PM (20 years ago)
Author:
z0rglub
Message:

"show metadata" feature added : you can ask to show metadata (EXIF and IPTC)
on picture.php page. Metadata read functions were moved from
admin/include/functions_metadata.php to include/functions_metadata.inc.php

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/configuration.php

    r486 r493  
    211211$use_exif = ($conf['use_exif']=='true')?'USE_EXIF_YES':'USE_EXIF_NO';
    212212$use_iptc = ($conf['use_iptc']=='true')?'USE_IPTC_YES':'USE_IPTC_NO';
     213$show_exif = ($conf['show_exif']=='true')?'SHOW_EXIF_YES':'SHOW_EXIF_NO';
     214$show_iptc = ($conf['show_iptc']=='true')?'SHOW_IPTC_YES':'SHOW_IPTC_NO';
    213215
    214216//----------------------------------------------------- template initialization
     
    245247  $use_exif=>'checked="checked"',
    246248  $use_iptc=>'checked="checked"',
     249  $show_exif=>'checked="checked"',
     250  $show_iptc=>'checked="checked"',
    247251 
    248252  'L_CONFIRM'=>$lang['conf_confirmation'],
     
    314318  'L_USE_IPTC'=>$lang['conf_use_iptc'],
    315319  'L_USE_IPTC_INFO'=>$lang['conf_use_iptc_info'],
     320  'L_SHOW_EXIF'=>$lang['conf_show_exif'],
     321  'L_SHOW_EXIF_INFO'=>$lang['conf_show_exif_info'],
     322  'L_SHOW_IPTC'=>$lang['conf_show_iptc'],
     323  'L_SHOW_IPTC_INFO'=>$lang['conf_show_iptc_info'],
    316324 
    317325  'F_ACTION'=>add_session_id(PHPWG_ROOT_PATH.'admin.php?page=configuration')
Note: See TracChangeset for help on using the changeset viewer.