source: extensions/Icons_Set/maintain.inc.php @ 13741

Last change on this file since 13741 was 10297, checked in by flop25, 13 years ago

plugin in dev

File size: 455 bytes
Line 
1<?php
2
3function plugin_install()
4{
5    global $prefixeTable;
6    $q = '
7INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
8        VALUES
9        ("iconset" , "" , "List of icons and their associations with themes");';
10    pwg_query($q);
11
12}
13
14
15
16function plugin_activate()
17{
18    global $prefixeTable;
19}//fin active
20
21
22
23
24function plugin_uninstall()
25{
26        global $prefixeTable;
27  pwg_query('DELETE FROM '.CONFIG_TABLE.' WHERE param IN (\'iconset\')');
28}//fin uninstall
29
30
31?>
Note: See TracBrowser for help on using the repository browser.