Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        admin
5
 * @package         modules
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id: uninstall.php 1467 2011-07-02 00:06:53Z Luisehahne $
14
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/modules/uninstall.php $
15
 * @lastmodified    $Date: 2011-07-02 02:06:53 +0200 (Sat, 02 Jul 2011) $
16
 *
17
 */
18

    
19
// Setup admin object
20
require('../../config.php');
21
require_once(WB_PATH.'/framework/class.admin.php');
22
$admin = new admin('Addons', 'modules_uninstall', false);
23
if( !$admin->checkFTAN() )
24
{
25
	$admin->print_header();
26
	$admin->print_error($MESSAGE['GENERIC_SECURITY_ACCESS']);
27
}
28
// After check print the header
29
$admin->print_header();
30

    
31
// Check if user selected module
32
if(!isset($_POST['file']) OR $_POST['file'] == "") {
33
	header("Location: index.php");
34
	exit(0);
35
} else {
36
	$file = $admin->add_slashes($_POST['file']);
37
}
38

    
39
// Extra protection
40
if(trim($file) == '') {
41
	header("Location: index.php");
42
	exit(0);
43
}
44

    
45
// Include the WB functions file
46
require_once(WB_PATH.'/framework/functions.php');
47

    
48
// Check if the module exists
49
if(!is_dir(WB_PATH.'/modules/'.$file)) {
50
	$admin->print_error($MESSAGE['GENERIC']['NOT_INSTALLED']);
51
}
52

    
53
if (!function_exists("replace_all")) {
54
	function replace_all ($aStr = "", &$aArray ) {
55
		foreach($aArray as $k=>$v) $aStr = str_replace("{{".$k."}}", $v, $aStr);
56
		return $aStr;
57
	}
58
}
59

    
60
$info = $database->query("SELECT section_id, page_id FROM ".TABLE_PREFIX."sections WHERE module='".$_POST['file']."'" );
61

    
62
if ( $info->numRows() > 0) {
63
	
64
	/**
65
	*	Modul is in use, so we have to warn the user
66
	*/
67
	if (!array_key_exists("CANNOT_UNINSTALL_IN_USE_TMPL", $MESSAGE['GENERIC'])) {
68
		$add = $info->numRows() == 1 ? "this page" : "these pages";
69
		$msg_template_str  = "<br /><br />{{type}} <b>{{type_name}}</b> could not be uninstalled because it is still in use on {{pages}}";
70
		$msg_template_str .= ":<br /><i>click for editing.</i><br /><br />";
71
	} else {
72
		$msg_template_str = $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'];
73
		$temp = explode(";",$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES']);
74
		$add = $info->numRows() == 1 ? $temp[0] : $temp[1];
75
	}
76
	/**
77
	*	The template-string for displaying the Page-Titles ... in this case as a link
78
	*/
79
	$page_template_str = "- <b><a href='../pages/sections.php?page_id={{id}}'>{{title}}</a></b><br />";
80
	
81
	$values = array ('type' => 'Modul', 'type_name' => $file, 'pages' => $add );
82
	$msg = replace_all ( $msg_template_str,  $values );
83
		
84
	$page_names = "";
85
	
86
	while ($data = $info->fetchRow() ) {
87
	
88
		$temp = $database->query("SELECT page_title from ".TABLE_PREFIX."pages where page_id=".$data['page_id']);
89
		$temp_title = $temp->fetchRow();
90
		
91
		$page_info = array(
92
			'id'	=> $data['page_id'], 
93
			'title' => $temp_title['page_title']
94
		);
95
			
96
		$page_names .= replace_all ( $page_template_str, $page_info );
97
	}
98
	
99
	/**
100
	*	Printing out the error-message and die().
101
	*/
102
	$admin->print_error(str_replace ($TEXT['FILE'], "Modul", $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE']).$msg.$page_names);
103
}
104

    
105
// Check if we have permissions on the directory
106
if(!is_writable(WB_PATH.'/modules/'.$file)) {
107
	$admin->print_error($MESSAGE['GENERIC']['CANNOT_UNINSTALL']);
108
}
109

    
110
// Run the modules uninstall script if there is one
111
if(file_exists(WB_PATH.'/modules/'.$file.'/uninstall.php')) {
112
	require(WB_PATH.'/modules/'.$file.'/uninstall.php');
113
}
114

    
115
// Try to delete the module dir
116
if(!rm_full_dir(WB_PATH.'/modules/'.$file)) {
117
	$admin->print_error($MESSAGE['GENERIC']['CANNOT_UNINSTALL']);
118
} else {
119
	// Remove entry from DB
120
	$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE directory = '".$file."' AND type = 'module'");
121
}
122

    
123
// Print success message
124
$admin->print_success($MESSAGE['GENERIC']['UNINSTALLED']);
125

    
126
// Print admin footer
127
$admin->print_footer();
128

    
129
?>
(5-5/5)