forked from OGSteam/mod-attaques
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.php
executable file
·30 lines (25 loc) · 1006 Bytes
/
uninstall.php
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
<?php
/**
* uninstall.php
*
* @package Attaques
* @author Verité modifié par ericc
* @link http://www.ogsteam.fr
* @version : 0.8a
*/
//L'appel direct est interdit
if (!defined('IN_SPYOGAME')) die("Hacking attempt");
//Définitions
global $db;
global $table_prefix;
define("TABLE_ATTAQUES_ATTAQUES", $table_prefix . "attaques_attaques");
define("TABLE_ATTAQUES_RECYCLAGES", $table_prefix . "attaques_recyclages");
define("TABLE_ATTAQUES_ARCHIVES", $table_prefix . "attaques_archives");
define("TABLE_MOD_USER_CFG", $table_prefix . "mod_user_config");
//Suppression des paramètres de configuration et bbcodes
mod_del_all_option();
// Suppression des paramètres utilisateur
//mod_del_all_user_option(); To be managed by OGSpy
$mod_uninstall_name = "attaques";
$mod_uninstall_table = TABLE_ATTAQUES_ATTAQUES . ', ' . TABLE_ATTAQUES_RECYCLAGES . ', ' . TABLE_ATTAQUES_ARCHIVES . ', ' . TABLE_MOD_USER_CFG;
uninstall_mod($mod_uninstall_name, $mod_uninstall_table);