blob: d3beb4873e1be1a6fe04eb822ea2f613d496311d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
class smartpocket_maintain extends ThemeMaintain
{
private $installed = false;
private $default_conf = array(
'loop' => true,//true - false
'autohide' => 5000,//5000 - 0
);
function activate($theme_version, &$errors=array())
{
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 deactivate()
{ }
function delete()
{
// delete configuration
conf_delete_param('smartpocket');
}
}
?>
|