diff options
author | flop25 <flop25@piwigo.org> | 2013-06-30 21:15:06 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2013-06-30 21:15:06 +0000 |
commit | 18cfd1bb208eb12cd1be736780d813fb2de6830e (patch) | |
tree | df9b2b4ad981c6bdd1b5f0425e5b6678b39ec08b /themes/smartpocket/admin/upgrade.inc.php | |
parent | 19ae5b7e2ecd0948f202ac72e714b87808db7ccb (diff) |
bug:2848
added two options for the slideshow
ToDo lang var
git-svn-id: http://piwigo.org/svn/trunk@23718 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/smartpocket/admin/upgrade.inc.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/themes/smartpocket/admin/upgrade.inc.php b/themes/smartpocket/admin/upgrade.inc.php new file mode 100644 index 000000000..709cab495 --- /dev/null +++ b/themes/smartpocket/admin/upgrade.inc.php @@ -0,0 +1,29 @@ +<?php + +if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); + +global $prefixeTable, $conf; + +if (!isset($conf['smartpocket'])) +{ + $config = array( + 'loop' => true,//true - false + 'autohide' => 5000,//5000 - 0 + ); + $query = " +INSERT INTO " . CONFIG_TABLE . " (param,value,comment) +VALUES ('smartpocket' , '".pwg_db_real_escape_string(serialize($config))."' , 'loop#autohide');"; + pwg_query($query); + load_conf_from_db(); +} +elseif (count(unserialize( $conf['smartpocket'] ))!=2) +{ + $conff=unserialize($conf['smartpocket']); + $config = array( + 'loop' => (isset($conff['loop'])) ? $conff['loop'] :true, + 'autohide' => (isset($conff['autohide'])) ? $conff['autohide'] :5000, + ); + conf_update_param('smartpocket', pwg_db_real_escape_string(serialize($config))); + load_conf_from_db(); +} +?>
\ No newline at end of file |