Last change
on this file since 20299 was
5449,
checked in by patdenice, 15 years ago
|
2.1 version with configuration page.
|
File size:
636 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | function theme_activate($id, $version, &$errors) |
---|
4 | { |
---|
5 | global $prefixeTable, $conf; |
---|
6 | |
---|
7 | if (!isset($conf['MontblancXL'])) |
---|
8 | { |
---|
9 | $config = array( |
---|
10 | 'home' => true, |
---|
11 | 'categories' => true, |
---|
12 | 'picture' => false, |
---|
13 | 'other' => true, |
---|
14 | ); |
---|
15 | |
---|
16 | $query = ' |
---|
17 | INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment) |
---|
18 | VALUES ("MontblancXL" , "'.addslashes(serialize($config)).'" , "MontblancXL parameters");'; |
---|
19 | |
---|
20 | pwg_query($query); |
---|
21 | } |
---|
22 | } |
---|
23 | |
---|
24 | function theme_deactivate() |
---|
25 | { |
---|
26 | global $prefixeTable; |
---|
27 | |
---|
28 | $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="MontblancXL" LIMIT 1;'; |
---|
29 | pwg_query($query); |
---|
30 | } |
---|
31 | |
---|
32 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.