aboutsummaryrefslogtreecommitdiffstats
path: root/themes/smartpocket/admin/maintain.inc.php
diff options
context:
space:
mode:
authorflop25 <flop25@piwigo.org>2014-01-11 15:35:00 +0000
committerflop25 <flop25@piwigo.org>2014-01-11 15:35:00 +0000
commitb071d8dc18a8b2e6aeff96a2e9208ac02653381e (patch)
tree60f1248aa23b3fde3b05c3645ac5231927a7fee0 /themes/smartpocket/admin/maintain.inc.php
parentdfea0da88f04d1a3edee230555716f193c699c35 (diff)
smartpocket: Thememaintain class used in maintain.inc.php-> no more issue on 2.6 installation (tested)
git-svn-id: http://piwigo.org/svn/trunk@26627 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/smartpocket/admin/maintain.inc.php')
-rw-r--r--themes/smartpocket/admin/maintain.inc.php58
1 files changed, 37 insertions, 21 deletions
diff --git a/themes/smartpocket/admin/maintain.inc.php b/themes/smartpocket/admin/maintain.inc.php
index 2af937d38..d3beb4873 100644
--- a/themes/smartpocket/admin/maintain.inc.php
+++ b/themes/smartpocket/admin/maintain.inc.php
@@ -1,29 +1,45 @@
<?php
-
-function theme_activate($id, $version, &$errors)
+class smartpocket_maintain extends ThemeMaintain
{
- global $prefixeTable, $conf;
-
- if (!isset($conf['smartpocket']))
+ private $installed = false;
+
+ private $default_conf = array(
+ 'loop' => true,//true - false
+ 'autohide' => 5000,//5000 - 0
+ );
+
+ function activate($theme_version, &$errors=array())
{
- $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);
+ global $conf, $prefixeTable;
+
+ if (empty($conf['smartpocket']))
+ {
+ $conf['smartpocket'] = serialize($this->default_conf);
+ $query = "
+ INSERT INTO " . CONFIG_TABLE . " (param,value,comment)
+ VALUES ('smartpocket' , '".pwg_db_real_escape_string($conf['smartpocket'])."' , 'loop#autohide');";
+ pwg_query($query);
+ }
+ elseif (count(unserialize( $conf['smartpocket'] ))!=2)
+ {
+ $conff=unserialize($conf['smartpocket']);
+ $config = array(
+ 'loop' => (!empty($conff['loop'])) ? $conff['loop'] :true,
+ 'autohide' => (!empty($conff['autohide'])) ? $conff['autohide'] :5000,
+ );
+ conf_update_param('smartpocket', pwg_db_real_escape_string(serialize($config)));
+ load_conf_from_db();
+ }
+ $this->installed = true;
}
-}
-function theme_delete()
-{
- global $prefixeTable;
+ function deactivate()
+ { }
- $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="smartpocket" ;';
- pwg_query($query);
+ function delete()
+ {
+ // delete configuration
+ conf_delete_param('smartpocket');
+ }
}
-
?> \ No newline at end of file