Project

General

Profile

1 16 stefan
<?php
2
3
// $Id$
4
5
/*
6
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
24
*/
25
26
// Include config file and admin class file
27
require('../../config.php');
28
require_once(WB_PATH.'/framework/class.admin.php');
29
30
// Create new database object
31
$database = new database();
32
33
if(!isset($_POST['action']) OR $_POST['action'] != "modify" AND $_POST['action'] != "delete") {
34
	header("Location: index.php");
35
}
36
37
// Check if group group_id is a valid number and doesnt equal 1
38
if(!isset($_POST['group_id']) OR !is_numeric($_POST['group_id']) OR $_POST['group_id'] == 1) {
39
	header("Location: index.php");
40
}
41
42
if($_POST['action'] == 'modify') {
43
	// Create new admin object
44
	$admin = new admin('Access', 'groups_modify', false);
45
	// Print header
46
	$admin->print_header();
47
	// Get existing values
48
	$results = $database->query("SELECT * FROM ".TABLE_PREFIX."groups WHERE group_id = '".$_POST['group_id']."'");
49
	$group = $results->fetchRow();
50
	// Setup template object
51
	$template = new Template(ADMIN_PATH.'/groups');
52
	$template->set_file('page', 'group_form.html');
53
	$template->set_block('page', 'main_block', 'main');
54
	$template->set_var(	array(
55
										'ACTION_URL' => ADMIN_URL.'/groups/save.php',
56
										'SUBMIT_TITLE' => $TEXT['SAVE'],
57
										'GROUP_ID' => $group['group_id'],
58
										'GROUP_NAME' => $group['name'],
59
										'ADVANCED_ACTION' => 'groups.php'
60
										)
61
							);
62
	// Tell the browser whether or not to show advanced options
63
	if(isset($_POST['advanced']) AND $_POST['advanced'] == $TEXT['SHOW_ADVANCED'].' >>') {
64
		$template->set_var('DISPLAY_ADVANCED', '');
65
		$template->set_var('DISPLAY_BASIC', 'none');
66
		$template->set_var('ADVANCED', 'yes');
67
		$template->set_var('ADVANCED_BUTTON', '<< '.$TEXT['HIDE_ADVANCED']);
68
	} else {
69
		$template->set_var('DISPLAY_ADVANCED', 'none');
70
		$template->set_var('DISPLAY_BASIC', '');
71
		$template->set_var('ADVANCED', 'no');
72
		$template->set_var('ADVANCED_BUTTON', $TEXT['SHOW_ADVANCED'].' >>');
73
	}
74
75
	// Explode system permissions
76
	$system_permissions = explode(',', $group['system_permissions']);
77
	// Check system permissions boxes
78
	foreach($system_permissions AS $name) {
79
			$template->set_var($name.'_checked', 'checked');
80
	}
81
	// Explode module permissions
82
	$module_permissions = explode(',', $group['module_permissions']);
83
	// Explode template permissions
84
	$template_permissions = explode(',', $group['template_permissions']);
85
86
	// Insert values into module list
87
	$template->set_block('main_block', 'module_list_block', 'module_list');
88 4 ryan
	if ($handle = opendir(WB_PATH.'/modules/')) {
89
		while (false !== ($file = readdir($handle))) {
90 16 stefan
			if($file != "." AND $file != ".." AND $file != ".svn" AND is_dir(WB_PATH."/modules/$file") AND file_exists(WB_PATH."/modules/$file/info.php")) {
91
				// Include the modules info file
92
				require(WB_PATH.'/modules/'.$file.'/info.php');
93 119 stefan
				if ($module_type=='page') {
94
					$template->set_var('VALUE', $file);
95
					$template->set_var('NAME', $module_name);
96
					if(!is_numeric(array_search($file, $module_permissions))) {
97
						$template->set_var('CHECKED', 'checked');
98
					} else {
99
						$template->set_var('CHECKED', '');
100
					}
101
					$template->parse('module_list', 'module_list_block', true);
102 16 stefan
				}
103
			}
104
		}
105
	}
106
107
	// Insert values into template list
108
	$template->set_block('main_block', 'template_list_block', 'template_list');
109 4 ryan
	if ($handle = opendir(WB_PATH.'/templates/')) {
110
		while (false !== ($file = readdir($handle))) {
111 16 stefan
			if($file != "." AND $file != ".." AND $file != ".svn" AND is_dir(WB_PATH."/templates/$file") AND file_exists(WB_PATH."/templates/$file/info.php")) {
112
				// Include the modules info file
113
				require(WB_PATH.'/templates/'.$file.'/info.php');
114
				$template->set_var('VALUE', $file);
115
				$template->set_var('NAME', $template_name);
116
				if(!is_numeric(array_search($file, $template_permissions))) {
117
					$template->set_var('CHECKED', 'checked');
118
				} else {
119
					$template->set_var('CHECKED', '');
120
				}
121
				$template->parse('template_list', 'template_list_block', true);
122
			}
123
		}
124
	}
125
126
	// Insert language text and messages
127
	$template->set_var(array(
128
									'TEXT_RESET' => $TEXT['RESET'],
129
									'TEXT_ACTIVE' => $TEXT['ACTIVE'],
130
									'TEXT_DISABLED' => $TEXT['DISABLED'],
131
									'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
132
									'TEXT_USERNAME' => $TEXT['USERNAME'],
133
									'TEXT_PASSWORD' => $TEXT['PASSWORD'],
134
									'TEXT_RETYPE_PASSWORD' => $TEXT['RETYPE_PASSWORD'],
135
									'TEXT_DISPLAY_NAME' => $TEXT['DISPLAY_NAME'],
136
									'TEXT_EMAIL' => $TEXT['EMAIL'],
137
									'TEXT_GROUP' => $TEXT['GROUP'],
138
									'TEXT_SYSTEM_PERMISSIONS' => $TEXT['SYSTEM_PERMISSIONS'],
139
									'TEXT_MODULE_PERMISSIONS' => $TEXT['MODULE_PERMISSIONS'],
140
									'TEXT_TEMPLATE_PERMISSIONS' => $TEXT['TEMPLATE_PERMISSIONS'],
141
									'TEXT_NAME' => $TEXT['NAME'],
142
									'SECTION_PAGES' => $MENU['PAGES'],
143
									'SECTION_MEDIA' => $MENU['MEDIA'],
144
									'SECTION_MODULES' => $MENU['MODULES'],
145
									'SECTION_TEMPLATES' => $MENU['TEMPLATES'],
146
									'SECTION_LANGUAGES' => $MENU['LANGUAGES'],
147
									'SECTION_SETTINGS' => $MENU['SETTINGS'],
148
									'SECTION_USERS' => $MENU['USERS'],
149
									'SECTION_GROUPS' => $MENU['GROUPS'],
150
									'TEXT_VIEW' => $TEXT['VIEW'],
151
									'TEXT_ADD' => $TEXT['ADD'],
152
									'TEXT_LEVEL' => $TEXT['LEVEL'],
153
									'TEXT_MODIFY' => $TEXT['MODIFY'],
154
									'TEXT_DELETE' => $TEXT['DELETE'],
155
									'TEXT_MODIFY_CONTENT' => $TEXT['MODIFY_CONTENT'],
156
									'TEXT_MODIFY_SETTINGS' => $TEXT['MODIFY_SETTINGS'],
157
									'HEADING_MODIFY_INTRO_PAGE' => $HEADING['MODIFY_INTRO_PAGE'],
158
									'TEXT_CREATE_FOLDER' => $TEXT['CREATE_FOLDER'],
159
									'TEXT_RENAME' => $TEXT['RENAME'],
160
									'TEXT_UPLOAD_FILES' => $TEXT['UPLOAD_FILES'],
161
									'TEXT_BASIC' => $TEXT['BASIC'],
162
									'TEXT_ADVANCED' => $TEXT['ADVANCED'],
163
									'CHANGING_PASSWORD' => $MESSAGE['USERS']['CHANGING_PASSWORD']
164
									)
165
							);
166
167
	// Parse template object
168
	$template->parse('main', 'main_block', false);
169
	$template->pparse('output', 'page');
170
} elseif($_POST['action'] == 'delete') {
171
	// Create new admin object
172
	$admin = new admin('Access', 'groups_delete', false);
173
	// Print header
174
	$admin->print_header();
175
	// Delete the group
176
	$database->query("DELETE FROM ".TABLE_PREFIX."groups WHERE group_id = '".$_POST['group_id']."' LIMIT 1");
177
	if($database->is_error()) {
178
		$admin->print_error($database->get_error());
179
	} else {
180
		// Delete users in the group
181
		$database->query("DELETE FROM ".TABLE_PREFIX."users WHERE group_id = '".$_POST['group_id']."'");
182
		if($database->is_error()) {
183
			$admin->print_error($database->get_error());
184
		} else {
185
			$admin->print_success($MESSAGE['GROUPS']['DELETED']);
186
		}
187
	}
188
}
189
190
// Print admin footer
191
$admin->print_footer();
192
193
?>