no config file for now
This commit is contained in:
parent
b6b4fe3c84
commit
db5eef768f
1 changed files with 14 additions and 14 deletions
|
@ -35,7 +35,8 @@ namespace WP_EXTRAEXIF;
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
function defaults() {
|
function defaults() {
|
||||||
return array (
|
// hardcoded
|
||||||
|
$config = array (
|
||||||
// exiftool value => store as meta key
|
// exiftool value => store as meta key
|
||||||
'LensID' => 'lens',
|
'LensID' => 'lens',
|
||||||
'GPSLatitude' => 'geo_latitude',
|
'GPSLatitude' => 'geo_latitude',
|
||||||
|
@ -43,8 +44,19 @@ function defaults() {
|
||||||
'GPSAltitude' => 'geo_altitude',
|
'GPSAltitude' => 'geo_altitude',
|
||||||
'Title' => 'title',
|
'Title' => 'title',
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
|
$ini = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'config.ini';
|
||||||
|
if ( file_exists ( $ini ) ) {
|
||||||
|
$config = array_merge ( $config, parse_ini_file( $ini ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
$current = \get_option( __NAMESPACE__ );
|
||||||
|
|
||||||
|
if ( $current != $config )
|
||||||
|
\update_option( __NAMESPACE__, $config );
|
||||||
|
|
||||||
|
return $config;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* activate hook
|
* activate hook
|
||||||
|
@ -243,15 +255,3 @@ function debug( $message, $level = LOG_NOTICE ) {
|
||||||
|
|
||||||
return error_log( "{$parent}: {$message}" );
|
return error_log( "{$parent}: {$message}" );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
function ini2conf() {
|
|
||||||
$config = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'config.ini';
|
|
||||||
if ( !file_exists ( $config ) )
|
|
||||||
return defaults();
|
|
||||||
|
|
||||||
$params = parse_ini_file( $config );
|
|
||||||
\update_option( __NAMESPACE__, $params, true );
|
|
||||||
return $params;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
Loading…
Reference in a new issue