Rev | Line | |
---|
[4711] | 1 | <?php |
---|
| 2 | |
---|
| 3 | function plugin_activate() |
---|
| 4 | { |
---|
[6167] | 5 | global $prefixeTable, $conf; |
---|
[4711] | 6 | |
---|
[6167] | 7 | if (!isset($conf['autoupdate_ignore_list'])) |
---|
| 8 | { |
---|
| 9 | $query = ' |
---|
[4711] | 10 | INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment) |
---|
[9707] | 11 | VALUES ("autoupdate_ignore_list" , "'.addslashes(serialize(array('plugins'=>array(),'themes'=>array(),'languages'=>array()))).'" , "Ignored list for Piwigo Auto Update plugin");'; |
---|
[4711] | 12 | |
---|
[6167] | 13 | pwg_query($query); |
---|
| 14 | } |
---|
[4711] | 15 | } |
---|
| 16 | |
---|
[6196] | 17 | function plugin_uninstall() |
---|
[4711] | 18 | { |
---|
| 19 | global $prefixeTable; |
---|
| 20 | |
---|
| 21 | $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="autoupdate_ignore_list" LIMIT 1;'; |
---|
| 22 | pwg_query($query); |
---|
| 23 | } |
---|
| 24 | |
---|
| 25 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.