Project

General

Profile

1
<?php
2

    
3
// $Id: groups.php 238 2005-11-21 10:43:34Z stefan $
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
	$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'page'");
89
	if($result->numRows() > 0) {
90
		while($addon = $result->fetchRow()) {
91
			$template->set_var('VALUE', $addon['directory']);
92
			$template->set_var('NAME', $addon['name']);
93
			if(!is_numeric(array_search($addon['directory'], $module_permissions))) {
94
				$template->set_var('CHECKED', 'checked');
95
			} else {
96
				$template->set_var('CHECKED', '');
97
			}
98
			$template->parse('module_list', 'module_list_block', true);
99
		}
100
	}
101
	
102
	// Insert values into template list
103
	$template->set_block('main_block', 'template_list_block', 'template_list');
104
	$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template'");
105
	if($result->numRows() > 0) {
106
		while($addon = $result->fetchRow()) {
107
			$template->set_var('VALUE', $addon['directory']);
108
			$template->set_var('NAME', $addon['name']);
109
			if(!is_numeric(array_search($addon['directory'], $template_permissions))) {
110
				$template->set_var('CHECKED', 'checked');
111
			} else {
112
				$template->set_var('CHECKED', '');
113
			}
114
			$template->parse('template_list', 'template_list_block', true);
115
		}
116
	}
117
		
118
	// Insert language text and messages
119
	$template->set_var(array(
120
									'TEXT_RESET' => $TEXT['RESET'],
121
									'TEXT_ACTIVE' => $TEXT['ACTIVE'],
122
									'TEXT_DISABLED' => $TEXT['DISABLED'],
123
									'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
124
									'TEXT_USERNAME' => $TEXT['USERNAME'],
125
									'TEXT_PASSWORD' => $TEXT['PASSWORD'],
126
									'TEXT_RETYPE_PASSWORD' => $TEXT['RETYPE_PASSWORD'],
127
									'TEXT_DISPLAY_NAME' => $TEXT['DISPLAY_NAME'],
128
									'TEXT_EMAIL' => $TEXT['EMAIL'],
129
									'TEXT_GROUP' => $TEXT['GROUP'],
130
									'TEXT_SYSTEM_PERMISSIONS' => $TEXT['SYSTEM_PERMISSIONS'],
131
									'TEXT_MODULE_PERMISSIONS' => $TEXT['MODULE_PERMISSIONS'],
132
									'TEXT_TEMPLATE_PERMISSIONS' => $TEXT['TEMPLATE_PERMISSIONS'],
133
									'TEXT_NAME' => $TEXT['NAME'],
134
									'SECTION_PAGES' => $MENU['PAGES'],
135
									'SECTION_MEDIA' => $MENU['MEDIA'],
136
									'SECTION_MODULES' => $MENU['MODULES'],
137
									'SECTION_TEMPLATES' => $MENU['TEMPLATES'],
138
									'SECTION_LANGUAGES' => $MENU['LANGUAGES'],
139
									'SECTION_SETTINGS' => $MENU['SETTINGS'],
140
									'SECTION_USERS' => $MENU['USERS'],
141
									'SECTION_GROUPS' => $MENU['GROUPS'],
142
									'TEXT_VIEW' => $TEXT['VIEW'],
143
									'TEXT_ADD' => $TEXT['ADD'],
144
									'TEXT_LEVEL' => $TEXT['LEVEL'],
145
									'TEXT_MODIFY' => $TEXT['MODIFY'],
146
									'TEXT_DELETE' => $TEXT['DELETE'],
147
									'TEXT_MODIFY_CONTENT' => $TEXT['MODIFY_CONTENT'],
148
									'TEXT_MODIFY_SETTINGS' => $TEXT['MODIFY_SETTINGS'],
149
									'HEADING_MODIFY_INTRO_PAGE' => $HEADING['MODIFY_INTRO_PAGE'],
150
									'TEXT_CREATE_FOLDER' => $TEXT['CREATE_FOLDER'],
151
									'TEXT_RENAME' => $TEXT['RENAME'],
152
									'TEXT_UPLOAD_FILES' => $TEXT['UPLOAD_FILES'],
153
									'TEXT_BASIC' => $TEXT['BASIC'],
154
									'TEXT_ADVANCED' => $TEXT['ADVANCED'],
155
									'CHANGING_PASSWORD' => $MESSAGE['USERS']['CHANGING_PASSWORD']
156
									)
157
							);
158
	
159
	// Parse template object
160
	$template->parse('main', 'main_block', false);
161
	$template->pparse('output', 'page');
162
} elseif($_POST['action'] == 'delete') {
163
	// Create new admin object
164
	$admin = new admin('Access', 'groups_delete', false);
165
	// Print header
166
	$admin->print_header();
167
	// Delete the group
168
	$database->query("DELETE FROM ".TABLE_PREFIX."groups WHERE group_id = '".$_POST['group_id']."' LIMIT 1");
169
	if($database->is_error()) {
170
		$admin->print_error($database->get_error());
171
	} else {
172
		// Delete users in the group
173
		$database->query("DELETE FROM ".TABLE_PREFIX."users WHERE group_id = '".$_POST['group_id']."'");
174
		if($database->is_error()) {
175
			$admin->print_error($database->get_error());
176
		} else {
177
			$admin->print_success($MESSAGE['GROUPS']['DELETED']);
178
		}
179
	}
180
}
181

    
182
// Print admin footer
183
$admin->print_footer();
184

    
185
?>
(4-4/7)