Project

General

Profile

« Previous | Next » 

Revision 239

Added by stefan over 18 years ago

Fixed more inconsistencies regarding line endings and end-of-file newlines

View differences:

index.php
1
<?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
// Print admin header

27
require('../../config.php');

28
require_once(WB_PATH.'/framework/class.admin.php');

29
$admin = new admin('Access', 'groups');

30

  
31
// Create new template object for the modify/remove menu

32
$template = new Template(ADMIN_PATH.'/groups');

33
$template->set_file('page', 'template.html');

34
$template->set_block('page', 'main_block', 'main');

35
$template->set_var('ADMIN_URL', ADMIN_URL);

36

  
37
// Get existing value from database

38
$database = new database();

39
$query = "SELECT group_id,name FROM ".TABLE_PREFIX."groups WHERE group_id != '1'";

40
$results = $database->query($query);

41
if($database->is_error()) {

42
	$admin->print_error($database->get_error(), 'index.php');

43
}

44

  
45
// Insert values into the modify/remove menu

46
$template->set_block('main_block', 'list_block', 'list');

47
if($results->numRows() > 0) {

48
	// Insert first value to say please select

49
	$template->set_var('VALUE', '');

50
	$template->set_var('NAME', $TEXT['PLEASE_SELECT'].'...');

51
	$template->parse('list', 'list_block', true);

52
	// Loop through groups

53
	while($group = $results->fetchRow()) {

54
		$template->set_var('VALUE', $group['group_id']);

55
		$template->set_var('NAME', $group['name']);

56
		$template->parse('list', 'list_block', true);

57
	}

58
} else {

59
	// Insert single value to say no groups were found

60
	$template->set_var('NAME', $TEXT['NONE_FOUND']);

61
	$template->parse('list', 'list_block', true);

62
}

63

  
64
// Insert permissions values

65
if($admin->get_permission('groups_add') != true) {

66
	$template->set_var('DISPLAY_ADD', 'hide');

67
}

68
if($admin->get_permission('groups_modify') != true) {

69
	$template->set_var('DISPLAY_MODIFY', 'hide');

70
}

71
if($admin->get_permission('groups_delete') != true) {

72
	$template->set_var('DISPLAY_DELETE', 'hide');

73
}

74

  
75
// Insert language headings

76
$template->set_var(array(

77
								'HEADING_MODIFY_DELETE_GROUP' => $HEADING['MODIFY_DELETE_GROUP'],

78
								'HEADING_ADD_GROUP' => $HEADING['ADD_GROUP']

79
								)

80
						);

81
// Insert language text and messages

82
$template->set_var(array(

83
								'TEXT_MODIFY' => $TEXT['MODIFY'],

84
								'TEXT_DELETE' => $TEXT['DELETE'],

85
								'TEXT_MANAGE_USERS' => $TEXT['MANAGE_USERS'],

86
								'CONFIRM_DELETE' => $MESSAGE['GROUPS']['CONFIRM_DELETE']

87
								)

88
						);

89

  
90
// Parse template object

91
$template->parse('main', 'main_block', false);

92
$template->pparse('output', 'page');

93

  
94
// Setup template for add group form

95
$template = new Template(ADMIN_PATH.'/groups');

96
$template->set_file('page', 'group_form.html');

97
$template->set_block('page', 'main_block', 'main');

98
$template->set_var('DISPLAY_EXTRA', 'none');

99
$template->set_var('ACTION_URL', ADMIN_URL.'/groups/add.php');

100
$template->set_var('SUBMIT_TITLE', $TEXT['ADD']);

101
$template->set_var('ADVANCED_ACTION', 'index.php');

102

  
103
// Tell the browser whether or not to show advanced options

104
if(isset($_POST['advanced']) AND $_POST['advanced'] == $TEXT['SHOW_ADVANCED'].' >>') {

105
	$template->set_var('DISPLAY_ADVANCED', '');

106
	$template->set_var('DISPLAY_BASIC', 'none');

107
	$template->set_var('ADVANCED', 'yes');

108
	$template->set_var('ADVANCED_BUTTON', '<< '.$TEXT['HIDE_ADVANCED']);

109
} else {

110
	$template->set_var('DISPLAY_ADVANCED', 'none');

111
	$template->set_var('DISPLAY_BASIC', '');

112
	$template->set_var('ADVANCED', 'no');

113
	$template->set_var('ADVANCED_BUTTON', $TEXT['SHOW_ADVANCED'].' >>');

114
}

115

  
116
// Insert permissions values

117
if($admin->get_permission('groups_add') != true) {

118
	$template->set_var('DISPLAY_ADD', 'hide');

119
}

120

  
121
// Insert values into module list

122
$template->set_block('main_block', 'module_list_block', 'module_list');

123
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'page'");

124
if($result->numRows() > 0) {

125
	while($addon = $result->fetchRow()) {

126
		$template->set_var('VALUE', $addon['directory']);

127
		$template->set_var('NAME', $addon['name']);

128
		$template->parse('module_list', 'module_list_block', true);

129
	}

130
}

131

  
132
// Insert values into template list

133
$template->set_block('main_block', 'template_list_block', 'template_list');

134
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template'");

135
if($result->numRows() > 0) {

136
	while($addon = $result->fetchRow()) {

137
		$template->set_var('VALUE', $addon['directory']);

138
		$template->set_var('NAME', $addon['name']);

139
		$template->parse('template_list', 'template_list_block', true);

140
	}

141
}

142

  
143
// Insert language text and messages

144
$template->set_var(array(

145
								'TEXT_RESET' => $TEXT['RESET'],

146
								'TEXT_ACTIVE' => $TEXT['ACTIVE'],

147
								'TEXT_DISABLED' => $TEXT['DISABLED'],

148
								'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],

149
								'TEXT_USERNAME' => $TEXT['USERNAME'],

150
								'TEXT_PASSWORD' => $TEXT['PASSWORD'],

151
								'TEXT_RETYPE_PASSWORD' => $TEXT['RETYPE_PASSWORD'],

152
								'TEXT_DISPLAY_NAME' => $TEXT['DISPLAY_NAME'],

153
								'TEXT_EMAIL' => $TEXT['EMAIL'],

154
								'TEXT_GROUP' => $TEXT['GROUP'],

155
								'TEXT_SYSTEM_PERMISSIONS' => $TEXT['SYSTEM_PERMISSIONS'],

156
								'TEXT_MODULE_PERMISSIONS' => $TEXT['MODULE_PERMISSIONS'],

157
								'TEXT_TEMPLATE_PERMISSIONS' => $TEXT['TEMPLATE_PERMISSIONS'],

158
								'TEXT_NAME' => $TEXT['NAME'],

159
								'SECTION_PAGES' => $MENU['PAGES'],

160
								'SECTION_MEDIA' => $MENU['MEDIA'],

161
								'SECTION_MODULES' => $MENU['MODULES'],

162
								'SECTION_TEMPLATES' => $MENU['TEMPLATES'],

163
								'SECTION_SETTINGS' => $MENU['SETTINGS'],

164
								'SECTION_LANGUAGES' => $MENU['LANGUAGES'],

165
								'SECTION_USERS' => $MENU['USERS'],

166
								'SECTION_GROUPS' => $MENU['GROUPS'],

167
								'TEXT_VIEW' => $TEXT['VIEW'],

168
								'TEXT_ADD' => $TEXT['ADD'],

169
								'TEXT_LEVEL' => $TEXT['LEVEL'],

170
								'TEXT_MODIFY' => $TEXT['MODIFY'],

171
								'TEXT_DELETE' => $TEXT['DELETE'],

172
								'TEXT_MODIFY_CONTENT' => $TEXT['MODIFY_CONTENT'],

173
								'TEXT_MODIFY_SETTINGS' => $TEXT['MODIFY_SETTINGS'],

174
								'HEADING_MODIFY_INTRO_PAGE' => $HEADING['MODIFY_INTRO_PAGE'],

175
								'TEXT_CREATE_FOLDER' => $TEXT['CREATE_FOLDER'],

176
								'TEXT_RENAME' => $TEXT['RENAME'],

177
								'TEXT_UPLOAD_FILES' => $TEXT['UPLOAD_FILES'],

178
								'TEXT_BASIC' => $TEXT['BASIC'],

179
								'TEXT_ADVANCED' => $TEXT['ADVANCED'],

180
								'CHANGING_PASSWORD' => $MESSAGE['USERS']['CHANGING_PASSWORD'],

181
								'CHECKED' => 'checked'

182
								)

183
						);

184

  
185
// Parse template for add group form

186
$template->parse('main', 'main_block', false);

187
$template->pparse('output', 'page');

188

  
189
// Print the admin footer

190
$admin->print_footer();

191

  
192
?>

1
<?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
// Print admin header
27
require('../../config.php');
28
require_once(WB_PATH.'/framework/class.admin.php');
29
$admin = new admin('Access', 'groups');
30

  
31
// Create new template object for the modify/remove menu
32
$template = new Template(ADMIN_PATH.'/groups');
33
$template->set_file('page', 'template.html');
34
$template->set_block('page', 'main_block', 'main');
35
$template->set_var('ADMIN_URL', ADMIN_URL);
36

  
37
// Get existing value from database
38
$database = new database();
39
$query = "SELECT group_id,name FROM ".TABLE_PREFIX."groups WHERE group_id != '1'";
40
$results = $database->query($query);
41
if($database->is_error()) {
42
	$admin->print_error($database->get_error(), 'index.php');
43
}
44

  
45
// Insert values into the modify/remove menu
46
$template->set_block('main_block', 'list_block', 'list');
47
if($results->numRows() > 0) {
48
	// Insert first value to say please select
49
	$template->set_var('VALUE', '');
50
	$template->set_var('NAME', $TEXT['PLEASE_SELECT'].'...');
51
	$template->parse('list', 'list_block', true);
52
	// Loop through groups
53
	while($group = $results->fetchRow()) {
54
		$template->set_var('VALUE', $group['group_id']);
55
		$template->set_var('NAME', $group['name']);
56
		$template->parse('list', 'list_block', true);
57
	}
58
} else {
59
	// Insert single value to say no groups were found
60
	$template->set_var('NAME', $TEXT['NONE_FOUND']);
61
	$template->parse('list', 'list_block', true);
62
}
63

  
64
// Insert permissions values
65
if($admin->get_permission('groups_add') != true) {
66
	$template->set_var('DISPLAY_ADD', 'hide');
67
}
68
if($admin->get_permission('groups_modify') != true) {
69
	$template->set_var('DISPLAY_MODIFY', 'hide');
70
}
71
if($admin->get_permission('groups_delete') != true) {
72
	$template->set_var('DISPLAY_DELETE', 'hide');
73
}
74

  
75
// Insert language headings
76
$template->set_var(array(
77
								'HEADING_MODIFY_DELETE_GROUP' => $HEADING['MODIFY_DELETE_GROUP'],
78
								'HEADING_ADD_GROUP' => $HEADING['ADD_GROUP']
79
								)
80
						);
81
// Insert language text and messages
82
$template->set_var(array(
83
								'TEXT_MODIFY' => $TEXT['MODIFY'],
84
								'TEXT_DELETE' => $TEXT['DELETE'],
85
								'TEXT_MANAGE_USERS' => $TEXT['MANAGE_USERS'],
86
								'CONFIRM_DELETE' => $MESSAGE['GROUPS']['CONFIRM_DELETE']
87
								)
88
						);
89

  
90
// Parse template object
91
$template->parse('main', 'main_block', false);
92
$template->pparse('output', 'page');
93

  
94
// Setup template for add group form
95
$template = new Template(ADMIN_PATH.'/groups');
96
$template->set_file('page', 'group_form.html');
97
$template->set_block('page', 'main_block', 'main');
98
$template->set_var('DISPLAY_EXTRA', 'none');
99
$template->set_var('ACTION_URL', ADMIN_URL.'/groups/add.php');
100
$template->set_var('SUBMIT_TITLE', $TEXT['ADD']);
101
$template->set_var('ADVANCED_ACTION', 'index.php');
102

  
103
// Tell the browser whether or not to show advanced options
104
if(isset($_POST['advanced']) AND $_POST['advanced'] == $TEXT['SHOW_ADVANCED'].' >>') {
105
	$template->set_var('DISPLAY_ADVANCED', '');
106
	$template->set_var('DISPLAY_BASIC', 'none');
107
	$template->set_var('ADVANCED', 'yes');
108
	$template->set_var('ADVANCED_BUTTON', '<< '.$TEXT['HIDE_ADVANCED']);
109
} else {
110
	$template->set_var('DISPLAY_ADVANCED', 'none');
111
	$template->set_var('DISPLAY_BASIC', '');
112
	$template->set_var('ADVANCED', 'no');
113
	$template->set_var('ADVANCED_BUTTON', $TEXT['SHOW_ADVANCED'].' >>');
114
}
115

  
116
// Insert permissions values
117
if($admin->get_permission('groups_add') != true) {
118
	$template->set_var('DISPLAY_ADD', 'hide');
119
}
120

  
121
// Insert values into module list
122
$template->set_block('main_block', 'module_list_block', 'module_list');
123
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'page'");
124
if($result->numRows() > 0) {
125
	while($addon = $result->fetchRow()) {
126
		$template->set_var('VALUE', $addon['directory']);
127
		$template->set_var('NAME', $addon['name']);
128
		$template->parse('module_list', 'module_list_block', true);
129
	}
130
}
131

  
132
// Insert values into template list
133
$template->set_block('main_block', 'template_list_block', 'template_list');
134
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template'");
135
if($result->numRows() > 0) {
136
	while($addon = $result->fetchRow()) {
137
		$template->set_var('VALUE', $addon['directory']);
138
		$template->set_var('NAME', $addon['name']);
139
		$template->parse('template_list', 'template_list_block', true);
140
	}
141
}
142

  
143
// Insert language text and messages
144
$template->set_var(array(
145
								'TEXT_RESET' => $TEXT['RESET'],
146
								'TEXT_ACTIVE' => $TEXT['ACTIVE'],
147
								'TEXT_DISABLED' => $TEXT['DISABLED'],
148
								'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
149
								'TEXT_USERNAME' => $TEXT['USERNAME'],
150
								'TEXT_PASSWORD' => $TEXT['PASSWORD'],
151
								'TEXT_RETYPE_PASSWORD' => $TEXT['RETYPE_PASSWORD'],
152
								'TEXT_DISPLAY_NAME' => $TEXT['DISPLAY_NAME'],
153
								'TEXT_EMAIL' => $TEXT['EMAIL'],
154
								'TEXT_GROUP' => $TEXT['GROUP'],
155
								'TEXT_SYSTEM_PERMISSIONS' => $TEXT['SYSTEM_PERMISSIONS'],
156
								'TEXT_MODULE_PERMISSIONS' => $TEXT['MODULE_PERMISSIONS'],
157
								'TEXT_TEMPLATE_PERMISSIONS' => $TEXT['TEMPLATE_PERMISSIONS'],
158
								'TEXT_NAME' => $TEXT['NAME'],
159
								'SECTION_PAGES' => $MENU['PAGES'],
160
								'SECTION_MEDIA' => $MENU['MEDIA'],
161
								'SECTION_MODULES' => $MENU['MODULES'],
162
								'SECTION_TEMPLATES' => $MENU['TEMPLATES'],
163
								'SECTION_SETTINGS' => $MENU['SETTINGS'],
164
								'SECTION_LANGUAGES' => $MENU['LANGUAGES'],
165
								'SECTION_USERS' => $MENU['USERS'],
166
								'SECTION_GROUPS' => $MENU['GROUPS'],
167
								'TEXT_VIEW' => $TEXT['VIEW'],
168
								'TEXT_ADD' => $TEXT['ADD'],
169
								'TEXT_LEVEL' => $TEXT['LEVEL'],
170
								'TEXT_MODIFY' => $TEXT['MODIFY'],
171
								'TEXT_DELETE' => $TEXT['DELETE'],
172
								'TEXT_MODIFY_CONTENT' => $TEXT['MODIFY_CONTENT'],
173
								'TEXT_MODIFY_SETTINGS' => $TEXT['MODIFY_SETTINGS'],
174
								'HEADING_MODIFY_INTRO_PAGE' => $HEADING['MODIFY_INTRO_PAGE'],
175
								'TEXT_CREATE_FOLDER' => $TEXT['CREATE_FOLDER'],
176
								'TEXT_RENAME' => $TEXT['RENAME'],
177
								'TEXT_UPLOAD_FILES' => $TEXT['UPLOAD_FILES'],
178
								'TEXT_BASIC' => $TEXT['BASIC'],
179
								'TEXT_ADVANCED' => $TEXT['ADVANCED'],
180
								'CHANGING_PASSWORD' => $MESSAGE['USERS']['CHANGING_PASSWORD'],
181
								'CHECKED' => 'checked'
182
								)
183
						);
184

  
185
// Parse template for add group form
186
$template->parse('main', 'main_block', false);
187
$template->pparse('output', 'page');
188

  
189
// Print the admin footer
190
$admin->print_footer();
191

  
192
?>

Also available in: Unified diff