false, 'group_perm' => false, 'user_perm' => false, ); $query = 'INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment) VALUES ("PWG_Stuffs" , "'.pwg_db_real_escape_string(serialize($config)).'" , "PWG Stuffs plugin configuration");'; pwg_query($query); } } function plugin_uninstall() { global $prefixeTable; $q = 'DROP TABLE ' . $prefixeTable . 'stuffs;'; pwg_query($q); $q = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="PWG_Stuffs";'; pwg_query($q); } ?>