-
Notifications
You must be signed in to change notification settings - Fork 6
/
delete_module.php
222 lines (205 loc) · 7.98 KB
/
delete_module.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?php
/**
* @package delete_module.php
* @author John Doe <[email protected]>
* @since 2011-05-17
* @version 2011-05-17
*/
/*
5/17/11 Module Deletion Script
*/
@session_start();
require_once($_SESSION['fip']);
error_reporting(E_ALL); // 2/3/09
do_login(basename(__FILE__)); // session_start()
$tickets_dir = getcwd();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Pragma" CONTENT="NO-CACHE">
<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript">
<LINK REL=StyleSheet HREF="stylesheet.php?version=<?php print time();?>" TYPE="text/css">
</HEAD><BODY>
<?php
/**
* module_tabs_exist
* Insert description here
*
* @param $name
*
* @return
*
* @access
* @static
* @see
* @since
*/
function module_tabs_exist($name) {
$query = "SELECT COUNT(*) FROM `$GLOBALS[mysql_prefix]modules`";
$result = mysql_query($query);
$num_rows = @mysql_num_rows($result);
if ($num_rows) {
$query_exists = "SELECT * FROM `$GLOBALS[mysql_prefix]modules` WHERE `mod_name`=\"{$name}\"";
$result_exists = mysql_query($query_exists) or do_error($query_exists, 'mysql_query() failed', mysql_error(), __FILE__, __LINE__);
$num_rows = mysql_num_rows($result_exists);
if ($num_rows != 0) {
return 1;
} else {
return 0;
}
} else {
return 0;
}
}
/**
* mod_table_exists
* Insert description here
*
* @param $tablename
*
* @return
*
* @access
* @static
* @see
* @since
*/
function mod_table_exists($tablename) { //check if mysql table exists, if it's a re-install
$query = "SELECT COUNT(*) FROM $tablename";
$result = mysql_query($query);
$num_rows = @mysql_num_rows($result);
if ($num_rows) {
return 1;
} else {
return 0;
}
}
if (isset($_POST['module_choice'])) { // Handle the form.
// $query_exists = "SELECT * FROM `$GLOBALS[mysql_prefix]modules` WHERE `mod_name`=\"{$name}\"";
// $result_exists = mysql_query($query_exists) or do_error($query_exists, 'mysql_query() failed', mysql_error(), __FILE__, __LINE__);
// $num_rows = mysql_num_rows($result_exists);
?>
<DIV style='background-color:#CECECE; position: absolute; width: 60%; height: 60%; left: 20%; top: 10%; border:2px inset #FFF2BF; display: block; text-align: center'>
<TABLE BORDER="0">
<TR><TH class='heading'><?php print gettext('Module Deletion - Confirmation');?></TH></TR>
<TR><TD> </TD></TR>
<TR><TD> </TD></TR>
<FORM NAME="delete_2" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<TR><TD style='font-size: 14px; font-weight: bold; background-color: #AEAEAE; text-align: center;'><?php print gettext('Selected Module');?>: <?php print $_POST['module_choice'];?></TD></TR>
<TR><TD> </TD></TR>
<TR><TD> </TD></TR>
<TR><TD> </TD></TR>
<TR><TD CLASS="td_label"><?php print gettext('Click Submit to confirm module deletion or Cancel to abort');?></TD></TR>
<TR><TD> </TD></TR>
<TR><TD> </TD></TR>
<INPUT TYPE='hidden' NAME='confirmation' VALUE='<?php print $_POST['module_choice'];?>'>
<INPUT TYPE='hidden' NAME='flag' VALUE='Confirmation Received'>
<TR><TD ALIGN="center"><INPUT TYPE="button" VALUE="<?php print gettext('Cancel');?>" onClick="window.location.href='config.php';" /> <input type="submit" name="submit" value="<?php print gettext('Submit');?>" /></TD></TR>
</FORM></TABLE>
</DIV>
<?php
} elseif (isset($_POST['confirmation'])) { // If form not submitted print form.
$mod_name = $_POST['confirmation'];
$query = "SELECT * FROM `$GLOBALS[mysql_prefix]modules` WHERE `mod_name`= '$mod_name'";
$result = mysql_query($query) or do_error($query, 'mysql_query() failed', mysql_error(), __FILE__, __LINE__);
$row = mysql_fetch_assoc($result);
$module_name = $row['mod_name'];
$table = $row['table'];
/**
* rmdir_recurse
* Insert description here
*
* @param $path
*
* @return
*
* @access
* @static
* @see
* @since
*/
function rmdir_recurse($path) {
$path = rtrim($path, '/').'/';
$handle = opendir($path);
while (false !== ($file = readdir($handle))) {
if ($file != '.' and $file != '..') {
$fullpath = $path.$file;
if(is_dir($fullpath)) rmdir_recurse($fullpath); else unlink($fullpath);
}
}
closedir($handle);
rmdir($path);
return TRUE;
}
?>
<DIV style='background-color:#CECECE; position: absolute; width: 60%; height: 60%; left: 20%; top: 10%; border:2px inset #FFF2BF; display: block; text-align: center'>
<BR /><BR /><BR /><BR /><?php print $_POST['flag'];?><BR /><BR />
<?php print gettext('Deleting Tickets Module');?>........<?php print $_POST['confirmation'];?><BR /><BR />
<?php print gettext('Dropping Table');?>........<?php print $table;?>...........
<?php
$query = "DROP table `$GLOBALS[mysql_prefix]" . $table ."`";
$result = mysql_query($query) or do_error($query, 'mysql_query() failed', mysql_error(), __FILE__, __LINE__);
if ($result) {
print gettext('Success') . "<BR />";
} else {
print gettext('Failed') . "<BR />";
}
?>
<?php print gettext('Removing Directory and files');?> /modules/<?php print $_POST['confirmation'];?>..........
<?php
$directory = $tickets_dir . "/modules/" . $module_name;
$rem_dir = rmdir_recurse($directory);
if ($rem_dir == true) {
print gettext('Success') . "<BR />";
} else {
print gettext('Failed') . "<BR />";
}
?>
<?php print gettext('Removing Entry from Modules Table.');?>.........
<?php
$query = "DELETE FROM `$GLOBALS[mysql_prefix]modules` WHERE `mod_name`= '$mod_name'";
$result = mysql_query($query) or do_error($query, 'mysql_query() failed', mysql_error(), __FILE__, __LINE__);
if ($result) {
print gettext('Success') . "<BR />";
} else {
print gettext('Failed') . "<BR />";
}
?>
<BR /><BR /><?php print gettext('Module Removed Successfuly');?><BR /><BR />
<A HREF="config.php"><< <?php print gettext('Return to Configuration Page');?> >></A>
</DIV>
<?php
} else {
$query = "SELECT * FROM `$GLOBALS[mysql_prefix]modules`";
$result = mysql_query($query) or do_error($query, 'mysql_query() failed', mysql_error(), __FILE__, __LINE__);
$num = mysql_num_rows($result);
$choice = "<SELECT name='module_choice' >";
$choice .= "<OPTION style='color:#FFFF00; background-color:#CC0000;' selected>" . gettext('Select Module to Delete') . "</OPTION>";
while ($row = mysql_fetch_assoc($result)) {
$module_name = $row['mod_name'];
$table = $row['table'];
$choice .= "<OPTION VALUE='$module_name'>$module_name</OPTION>";
}
$choice .= "</SELECT>";
?>
<DIV style='background-color:#CECECE; position: absolute; width: 60%; height: 60%; left: 20%; top: 10%; border:2px inset #FFF2BF; display: block'>
<center><?php print gettext('TICKETS MODULES INSTALLATION.');?></center>
<DIV style='background-color:#CECECE; position: absolute; width: 40%; height: 20%; left: 5%; top: 10%; border:2px inset #FFF2BF; display: block'>
<TABLE BORDER="0">
<TH COLSPAN="2"><?php print gettext('Delete a Tickets Module');?><BR /></TH>
<FORM NAME="delete_1" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<TR CLASS="even"><TD CLASS="td_label"><?php print gettext('Module');?>: </TD><TD><?php print $choice;?></TD>
<TR CLASS="even"><TD COLSPAN="2" ALIGN="center"><input type="submit" name="submit" value="<?php print gettext('Submit');?>" /></TD></TR>
</FORM></TABLE>
</div>
<DIV style='background-color:#CECECE; position: absolute; width: 50%; height: 80%; right: 5%; top: 10%; border:2px inset #FFF2BF; display: block'>
<?php print gettext('HELP PANEL');?>
</DIV>
</DIV>
<?php
}
?>