Project

General

Profile

« Previous | Next » 

Revision 1009

Added by Matthias almost 15 years ago

-Moved styles from admin/pages/sections.php to sections.htt in backend themes (Thanks to Luisehahne)

- Moved javascript files from admin/pages/index.php to external js files (Thanks to Luisehahne)

- Major improovements and changes to all backend files to get more valide Code output (Thanks to Luisehahne)

View differences:

settings.php
1
<?php
2

  
3
// $Id$
4

  
5
/*
6

  
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, 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
// Get page id
27
if(!isset($_GET['page_id']) OR !is_numeric($_GET['page_id'])) {
28
	header("Location: index.php");
29
	exit(0);
30
} else {
31
	$page_id = $_GET['page_id'];
32
}
33

  
34
// Create new admin object
35
require('../../config.php');
36
require_once(WB_PATH.'/framework/class.admin.php');
37
$admin = new admin('Pages', 'pages_settings');
38

  
39
// Include the WB functions file
40
require_once(WB_PATH.'/framework/functions-utf8.php');
41

  
42
// Get perms
43
$database = new database();
44
$results = $database->query("SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'");
45
$results_array = $results->fetchRow();
46
$old_admin_groups = explode(',', $results_array['admin_groups']);
47
$old_admin_users = explode(',', $results_array['admin_users']);
48

  
49
$in_old_group = FALSE;
50
foreach($admin->get_groups_id() as $cur_gid){
51
    if (in_array($cur_gid, $old_admin_groups)) {
52
        $in_old_group = TRUE;
53
    }
54
}
55
if((!$in_old_group) AND !is_numeric(array_search($admin->get_user_id(), $old_admin_users))) {
56
	$admin->print_error($MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']);
57
}
58

  
59
// Get page details
60
$database = new database();
61
$query = "SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'";
62
$results = $database->query($query);
63
if($database->is_error()) {
64
	$admin->print_header();
65
	$admin->print_error($database->get_error());
66
}
67
if($results->numRows() == 0) {
68
	$admin->print_header();
69
	$admin->print_error($MESSAGE['PAGES']['NOT_FOUND']);
70
}
71
$results_array = $results->fetchRow();
72

  
73
// Get display name of person who last modified the page
74
$user=$admin->get_user_details($results_array['modified_by']);
75

  
76
// Convert the unix ts for modified_when to human a readable form
77
if($results_array['modified_when'] != 0) {
78
	$modified_ts = gmdate(TIME_FORMAT.', '.DATE_FORMAT, $results_array['modified_when']+TIMEZONE);
79
} else {
80
	$modified_ts = 'Unknown';
81
}
82

  
83
// Setup template object, parse vars to it, then parse it
84
$template = new Template(THEME_PATH.'/templates');
85
$template->set_file('page', 'pages_settings.htt');
86
$template->set_block('page', 'main_block', 'main');
87
$template->set_var(array(
88
								'PAGE_ID' => $results_array['page_id'],
89
								'PAGE_TITLE' => ($results_array['page_title']),
90
								'MENU_TITLE' => ($results_array['menu_title']),
91
								'DESCRIPTION' => ($results_array['description']),
92
								'KEYWORDS' => ($results_array['keywords']),
93
								'MODIFIED_BY' => $user['display_name'],
94
								'MODIFIED_BY_USERNAME' => $user['username'],
95
								'MODIFIED_WHEN' => $modified_ts,
96
								'ADMIN_URL' => ADMIN_URL
97
								)
98
						);
99

  
100
// Work-out if we should show the "manage sections" link
101
$query_sections = $database->query("SELECT section_id FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' AND module = 'menu_link'");
102
if($query_sections->numRows() > 0) {
103
	$template->set_var('DISPLAY_MANAGE_SECTIONS', 'none');
104
} elseif(MANAGE_SECTIONS == 'enabled') {
105
	$template->set_var('TEXT_MANAGE_SECTIONS', $HEADING['MANAGE_SECTIONS']);
106
} else {
107
	$template->set_var('DISPLAY_MANAGE_SECTIONS', 'none');
108
}
109

  
110
// Visibility
111
if($results_array['visibility'] == 'public') {
112
	$template->set_var('PUBLIC_SELECTED', ' selected');
113
} elseif($results_array['visibility'] == 'private') {
114
	$template->set_var('PRIVATE_SELECTED', ' selected');
115
} elseif($results_array['visibility'] == 'registered') {
116
	$template->set_var('REGISTERED_SELECTED', ' selected');
117
} elseif($results_array['visibility'] == 'hidden') {
118
	$template->set_var('HIDDEN_SELECTED', ' selected');
119
} elseif($results_array['visibility'] == 'none') {
120
	$template->set_var('NO_VIS_SELECTED', ' selected');
121
}
122
// Group list 1 (admin_groups)
123
	$admin_groups = explode(',', str_replace('_', '', $results_array['admin_groups']));
124

  
125
	$query = "SELECT * FROM ".TABLE_PREFIX."groups";
126
	
127
	$get_groups = $database->query($query);
128
	$template->set_block('main_block', 'group_list_block', 'group_list');
129
	// Insert admin group and current group first
130
	$admin_group_name = $get_groups->fetchRow();
131
	$template->set_var(array(
132
									'ID' => 1,
133
									'TOGGLE' => '',
134
									'DISABLED' => ' disabled',
135
									'LINK_COLOR' => '000000',
136
									'CURSOR' => 'default',
137
									'NAME' => $admin_group_name['name'],
138
									'CHECKED' => ' checked'
139
									)
140
							);
141
	$template->parse('group_list', 'group_list_block', true);
142
	/*
143
	if(!in_array(1, $admin->get_groups_id())) {
144
		$users_groups = $admin->get_groups_name();
145
		foreach ($admin->get_groups_id() as $users_group_id) {
146
			$template->set_var(array(
147
										'ID' => $users_group_id,
148
										'TOGGLE' => '',
149
										'DISABLED' => ' disabled',
150
										'LINK_COLOR' => '000000',
151
										'CURSOR' => 'default',
152
										'NAME' => $users_groups[$users_group_id],
153
										'CHECKED' => ' checked'
154
										)
155
								);
156
			$template->parse('group_list', 'group_list_block', true);
157
		}
158
	}
159
	*/
160
	while($group = $get_groups->fetchRow()) {
161
		// check if the user is a member of this group
162
		$flag_disabled = '';
163
		$flag_checked =  '';
164
		$flag_cursor =   'pointer';
165
		$flag_color =    '';
166
		if (in_array($group["group_id"], $admin->get_groups_id())) {
167
			$flag_disabled = ''; //' disabled';
168
			$flag_checked =  ''; //' checked';
169
			$flag_cursor =   'default';
170
			$flag_color =    '000000';
171
		}
172

  
173
		// Check if the group is allowed to edit pages
174
		$system_permissions = explode(',', $group['system_permissions']);
175
		if(is_numeric(array_search('pages_modify', $system_permissions))) {
176
			$template->set_var(array(
177
											'ID' => $group['group_id'],
178
											'TOGGLE' => $group['group_id'],
179
											'DISABLED' => $flag_disabled,
180
											'LINK_COLOR' => $flag_color,
181
											'CURSOR' => $flag_cursor,
182
											'NAME' => $group['name'],
183
											'CHECKED' => $flag_checked
184
											)
185
									);
186
			if(is_numeric(array_search($group['group_id'], $admin_groups))) {
187
				$template->set_var('CHECKED', 'checked');
188
			} else {
189
				if (!$flag_checked) $template->set_var('CHECKED', '');
190
			}
191
			$template->parse('group_list', 'group_list_block', true);
192
		}
193
	}
194
// Group list 2 (viewing_groups)
195
	$viewing_groups = explode(',', str_replace('_', '', $results_array['viewing_groups']));
196

  
197
	$query = "SELECT * FROM ".TABLE_PREFIX."groups";
198

  
199
	$get_groups = $database->query($query);
200
	$template->set_block('main_block', 'group_list_block2', 'group_list2');
201
	// Insert admin group and current group first
202
	$admin_group_name = $get_groups->fetchRow();
203
	$template->set_var(array(
204
									'ID' => 1,
205
									'TOGGLE' => '',
206
									'DISABLED' => ' disabled',
207
									'LINK_COLOR' => '000000',
208
									'CURSOR' => 'default',
209
									'NAME' => $admin_group_name['name'],
210
									'CHECKED' => ' checked'
211
									)
212
							);
213
	$template->parse('group_list2', 'group_list_block2', true);
214

  
215

  
216
	while($group = $get_groups->fetchRow()) {
217
		// check if the user is a member of this group
218
		$flag_disabled = '';
219
		$flag_checked =  '';
220
		$flag_cursor =   'pointer';
221
		$flag_color =    '';
222
		if (in_array($group["group_id"], $admin->get_groups_id())) {
223
			$flag_disabled = ''; //' disabled';
224
			$flag_checked =  ''; //' checked';
225
			$flag_cursor =   'default';
226
			$flag_color =    '000000';
227
		}
228

  
229
		$template->set_var(array(
230
										'ID' => $group['group_id'],
231
										'TOGGLE' => $group['group_id'],
232
										'DISABLED' => $flag_disabled,
233
										'LINK_COLOR' => $flag_color,
234
										'CURSOR' => $flag_cursor,
235
										'NAME' => $group['name'],
236
										'CHECKED' => $flag_checked
237
										)
238
								);
239
		if(is_numeric(array_search($group['group_id'], $viewing_groups))) {
240
			$template->set_var('CHECKED', 'checked');
241
		} else {
242
			if (!$flag_checked) $template->set_var('CHECKED', '');
243
		}
244
		$template->parse('group_list2', 'group_list_block2', true);
245
	}
246
// Show private viewers
247
if($results_array['visibility'] == 'private' OR $results_array['visibility'] == 'registered') {
248
	$template->set_var('DISPLAY_VIEWERS', '');
249
} else {
250
	$template->set_var('DISPLAY_VIEWERS', 'none');
251
}
252

  
253
// Parent page list
254
$database = new database();
255
function parent_list($parent) {
256
	global $admin, $database, $template, $results_array;
257
	$query = "SELECT * FROM ".TABLE_PREFIX."pages WHERE parent = '$parent' ORDER BY position ASC";
258
	$get_pages = $database->query($query);
259
	while($page = $get_pages->fetchRow()) {
260
		if($admin->page_is_visible($page)==false)
261
			continue;
262
		// If the current page cannot be parent, then its children neither
263
		$list_next_level = true;
264
		// Stop users from adding pages with a level of more than the set page level limit
265
		if($page['level']+1 < PAGE_LEVEL_LIMIT) {
266
			// Get user perms
267
			$admin_groups = explode(',', str_replace('_', '', $page['admin_groups']));
268
			$admin_users = explode(',', str_replace('_', '', $page['admin_users']));
269

  
270
			$in_group = FALSE;
271
			foreach($admin->get_groups_id() as $cur_gid){
272
			    if (in_array($cur_gid, $admin_groups)) {
273
			        $in_group = TRUE;
274
			    }
275
			}
276
			
277
			if(($in_group) OR is_numeric(array_search($admin->get_user_id(), $admin_users))) {
278
				$can_modify = true;
279
			} else {
280
				$can_modify = false;
281
			}
282
			// Title -'s prefix
283
			$title_prefix = '';
284
			for($i = 1; $i <= $page['level']; $i++) { $title_prefix .= ' - '; }
285
			$template->set_var(array(
286
											'ID' => $page['page_id'],
287
											'TITLE' => ($title_prefix.$page['page_title'])
288
											)
289
									);
290
			if($results_array['parent'] == $page['page_id']) {
291
				$template->set_var('SELECTED', ' selected');
292
			} elseif($results_array['page_id'] == $page['page_id']) {
293
				$template->set_var('SELECTED', ' disabled="disabled" class="disabled"');
294
				$list_next_level=false;
295
			} elseif($can_modify != true) {
296
				$template->set_var('SELECTED', ' disabled="disabled" class="disabled"');
297
			} else {
298
				$template->set_var('SELECTED', '');
299
			}
300
			$template->parse('page_list2', 'page_list_block2', true);
301
		}
302
		if ($list_next_level)
303
			parent_list($page['page_id']);
304
	}
305
}
306
$template->set_block('main_block', 'page_list_block2', 'page_list2');
307
if($admin->get_permission('pages_add_l0') == true OR $results_array['level'] == 0) {
308
	if($results_array['parent'] == 0) { $selected = ' selected'; } else { $selected = ''; }
309
	$template->set_var(array(
310
									'ID' => '0',
311
									'TITLE' => $TEXT['NONE'],
312
									'SELECTED' => $selected
313
									)
314
							);
315
	$template->parse('page_list2', 'page_list_block2', true);
316
}
317
parent_list(0);
318

  
319
if($modified_ts == 'Unknown') {
320
	$template->set_var('DISPLAY_MODIFIED', 'hide');
321
} else {
322
	$template->set_var('DISPLAY_MODIFIED', '');
323
}
324
// Templates list
325
$template->set_block('main_block', 'template_list_block', 'template_list');
326
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' and function = 'template' order by name");
327
if($result->numRows() > 0) {
328
	while($addon = $result->fetchRow()) { 
329
		// Check if the user has perms to use this template
330
		if($addon['directory'] == $results_array['template'] OR $admin->get_permission($addon['directory'], 'template') == true) {
331
			$template->set_var('VALUE', $addon['directory']);
332
			$template->set_var('NAME', $addon['name']);
333
			if($addon['directory'] == $results_array['template']) {
334
				$template->set_var('SELECTED', ' selected');
335
			} else {
336
				$template->set_var('SELECTED', '');
337
			}
338
			$template->parse('template_list', 'template_list_block', true);
339
		}
340
	}
341
}
342

  
343
// Menu list
344
if(MULTIPLE_MENUS == false) {
345
	$template->set_var('DISPLAY_MENU_LIST', 'none');
346
}
347
// Include template info file (if it exists)
348
if($results_array['template'] != '') {
349
	$template_location = WB_PATH.'/templates/'.$results_array['template'].'/info.php';
350
} else {
351
	$template_location = WB_PATH.'/templates/'.DEFAULT_TEMPLATE.'/info.php';
352
}
353
if(file_exists($template_location)) {
354
	require($template_location);
355
}
356
// Check if $menu is set
357
if(!isset($menu[1]) OR $menu[1] == '') {
358
	// Make our own menu list
359
	$menu[1] = $TEXT['MAIN'];
360
}
361
// Add menu options to the list
362
$template->set_block('main_block', 'menu_list_block', 'menu_list');
363
foreach($menu AS $number => $name) {
364
	$template->set_var('NAME', $name);
365
	$template->set_var('VALUE', $number);
366
	if($results_array['menu'] == $number) {
367
		$template->set_var('SELECTED', 'selected');
368
	} else {
369
		$template->set_var('SELECTED', '');
370
	}
371
	$template->parse('menu_list', 'menu_list_block', true);
372
}
373

  
374
// Insert language values
375
$template->set_block('main_block', 'language_list_block', 'language_list');
376
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'language' order by name");
377
if($result->numRows() > 0) {
378
	while($addon = $result->fetchRow()) {
379
		$l_codes[$addon['name']] = $addon['directory'];
380
		$l_names[$addon['name']] = entities_to_7bit($addon['name']); // sorting-problem workaround
381
	}
382
	asort($l_names);
383
	foreach($l_names as $l_name=>$v) {
384
		// Insert code and name
385
		$template->set_var(array(
386
								'VALUE' => $l_codes[$l_name],
387
								'NAME' => $l_name
388
								));
389
		// Check if it is selected
390
		if($results_array['language'] == $l_codes[$l_name]) {
391
			$template->set_var('SELECTED', ' selected');
392
		} else {
393
			$template->set_var('SELECTED', '');
394
		}
395
		$template->parse('language_list', 'language_list_block', true);
396
	}
397
}
398

  
399
// Select disabled if searching is disabled
400
if($results_array['searching'] == 0) {
401
	$template->set_var('SEARCHING_DISABLED', ' selected');
402
}
403
// Select what the page target is
404
switch ($results_array['target']) {
405
	case '_top':
406
		$template->set_var('TOP_SELECTED', ' selected');
407
		break;
408
	case '_self':
409
		$template->set_var('SELF_SELECTED', ' selected');
410
		break;
411
	case '_blank':
412
		$template->set_var('BLANK_SELECTED', ' selected');
413
		break;
414
}
415
	
416

  
417
// Insert language text
418
$template->set_var(array(
419
								'HEADING_MODIFY_PAGE_SETTINGS' => $HEADING['MODIFY_PAGE_SETTINGS'],
420
								'TEXT_CURRENT_PAGE' => $TEXT['CURRENT_PAGE'],
421
								'TEXT_MODIFY' => $TEXT['MODIFY'],
422
								'TEXT_MODIFY_PAGE' => $HEADING['MODIFY_PAGE'],
423
								'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'],
424
								'TEXT_PAGE_TITLE' => $TEXT['PAGE_TITLE'],
425
								'TEXT_MENU_TITLE' => $TEXT['MENU_TITLE'],
426
								'TEXT_TYPE' => $TEXT['TYPE'],
427
								'TEXT_MENU' => $TEXT['MENU'],
428
								'TEXT_PARENT' => $TEXT['PARENT'],
429
								'TEXT_VISIBILITY' => $TEXT['VISIBILITY'],
430
								'TEXT_PUBLIC' => $TEXT['PUBLIC'],
431
								'TEXT_PRIVATE' => $TEXT['PRIVATE'],
432
								'TEXT_REGISTERED' => $TEXT['REGISTERED'],
433
								'TEXT_NONE' => $TEXT['NONE'],
434
								'TEXT_HIDDEN' => $TEXT['HIDDEN'],
435
								'TEXT_TEMPLATE' => $TEXT['TEMPLATE'],
436
								'TEXT_TARGET' => $TEXT['TARGET'],
437
								'TEXT_SYSTEM_DEFAULT' => $TEXT['SYSTEM_DEFAULT'],
438
								'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
439
								'TEXT_NEW_WINDOW' => $TEXT['NEW_WINDOW'],
440
								'TEXT_SAME_WINDOW' => $TEXT['SAME_WINDOW'],
441
								'TEXT_TOP_FRAME' => $TEXT['TOP_FRAME'],
442
								'TEXT_ADMINISTRATORS' => $TEXT['ADMINISTRATORS'],
443
								'TEXT_ALLOWED_VIEWERS' => $TEXT['ALLOWED_VIEWERS'],
444
								'TEXT_DESCRIPTION' => $TEXT['DESCRIPTION'],
445
								'TEXT_KEYWORDS' => $TEXT['KEYWORDS'],
446
								'TEXT_SEARCHING' => $TEXT['SEARCHING'],
447
								'TEXT_LANGUAGE' => $TEXT['LANGUAGE'],
448
								'TEXT_ENABLED' => $TEXT['ENABLED'],
449
								'TEXT_DISABLED' => $TEXT['DISABLED'],
450
								'TEXT_SAVE' => $TEXT['SAVE'],
451
								'TEXT_RESET' => $TEXT['RESET'],
452
								'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'],
453
								'HEADING_MODIFY_PAGE' => $HEADING['MODIFY_PAGE']
454
								)
455
						);
456

  
457
$template->parse('main', 'main_block', false);
458
$template->pparse('output', 'page');
459

  
460
// Print admin footer
461
$admin->print_footer();
462

  
463
?>
1
<?php
2

  
3
// $Id$
4

  
5
/*
6

  
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, 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
// Get page id
27
if(!isset($_GET['page_id']) OR !is_numeric($_GET['page_id'])) {
28
	header("Location: index.php");
29
	exit(0);
30
} else {
31
	$page_id = $_GET['page_id'];
32
}
33

  
34
// Create new admin object
35
require('../../config.php');
36
require_once(WB_PATH.'/framework/class.admin.php');
37
$admin = new admin('Pages', 'pages_settings');
38

  
39
// Include the WB functions file
40
require_once(WB_PATH.'/framework/functions-utf8.php');
41

  
42
// Get perms
43
$database = new database();
44
$results = $database->query("SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'");
45
$results_array = $results->fetchRow();
46
$old_admin_groups = explode(',', $results_array['admin_groups']);
47
$old_admin_users = explode(',', $results_array['admin_users']);
48

  
49
$in_old_group = FALSE;
50
foreach($admin->get_groups_id() as $cur_gid){
51
	if (in_array($cur_gid, $old_admin_groups)) {
52
		$in_old_group = TRUE;
53
	}
54
}
55
if((!$in_old_group) AND !is_numeric(array_search($admin->get_user_id(), $old_admin_users))) {
56
	$admin->print_error($MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']);
57
}
58

  
59
// Get page details
60
$database = new database();
61
$query = "SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'";
62
$results = $database->query($query);
63
if($database->is_error()) {
64
	$admin->print_header();
65
	$admin->print_error($database->get_error());
66
}
67
if($results->numRows() == 0) {
68
	$admin->print_header();
69
	$admin->print_error($MESSAGE['PAGES']['NOT_FOUND']);
70
}
71
$results_array = $results->fetchRow();
72

  
73
// Get display name of person who last modified the page
74
$user=$admin->get_user_details($results_array['modified_by']);
75

  
76
// Convert the unix ts for modified_when to human a readable form
77
if($results_array['modified_when'] != 0) {
78
	$modified_ts = gmdate(TIME_FORMAT.', '.DATE_FORMAT, $results_array['modified_when']+TIMEZONE);
79
} else {
80
	$modified_ts = 'Unknown';
81
}
82

  
83
// Setup template object, parse vars to it, then parse it
84
$template = new Template(THEME_PATH.'/templates');
85
$template->set_file('page', 'pages_settings.htt');
86
$template->set_block('page', 'main_block', 'main');
87

  
88
$template->set_var(array(
89
				'PAGE_ID' => $results_array['page_id'],
90
				'PAGE_TITLE' => ($results_array['page_title']),
91
				'MENU_TITLE' => ($results_array['menu_title']),
92
				'DESCRIPTION' => ($results_array['description']),
93
				'KEYWORDS' => ($results_array['keywords']),
94
				'MODIFIED_BY' => $user['display_name'],
95
				'MODIFIED_BY_USERNAME' => $user['username'],
96
				'MODIFIED_WHEN' => $modified_ts,
97
				'ADMIN_URL' => ADMIN_URL,
98
				'WB_URL' => WB_URL,
99
				'WB_PATH' => WB_PATH,
100
				'THEME_URL' => THEME_URL,
101
			) );
102

  
103
// Work-out if we should show the "manage sections" link
104
$query_sections = $database->query("SELECT section_id FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id' AND module = 'menu_link'");
105
if($query_sections->numRows() > 0) {
106
	$template->set_var('DISPLAY_MANAGE_SECTIONS', 'none');
107
} elseif(MANAGE_SECTIONS == 'enabled') {
108
	$template->set_var('TEXT_MANAGE_SECTIONS', $HEADING['MANAGE_SECTIONS']);
109
} else {
110
	$template->set_var('DISPLAY_MANAGE_SECTIONS', 'none');
111
}
112

  
113
// Visibility
114
if($results_array['visibility'] == 'public') {
115
	$template->set_var('PUBLIC_SELECTED', ' selected="selected"');
116
} elseif($results_array['visibility'] == 'private') {
117
	$template->set_var('PRIVATE_SELECTED', ' selected="selected"');
118
} elseif($results_array['visibility'] == 'registered') {
119
	$template->set_var('REGISTERED_SELECTED', ' selected="selected"');
120
} elseif($results_array['visibility'] == 'hidden') {
121
	$template->set_var('HIDDEN_SELECTED', ' selected="selected"');
122
} elseif($results_array['visibility'] == 'none') {
123
	$template->set_var('NO_VIS_SELECTED', ' selected="selected"');
124
}
125
// Group list 1 (admin_groups)
126
	$admin_groups = explode(',', str_replace('_', '', $results_array['admin_groups']));
127

  
128
	$query = "SELECT * FROM ".TABLE_PREFIX."groups";
129
	
130
	$get_groups = $database->query($query);
131
	$template->set_block('main_block', 'group_list_block', 'group_list');
132
	// Insert admin group and current group first
133
	$admin_group_name = $get_groups->fetchRow();
134
	$template->set_var(array(
135
									'ID' => 1,
136
									'TOGGLE' => '',
137
									'DISABLED' => ' disabled="disabled"',
138
									'LINK_COLOR' => '000000',
139
									'CURSOR' => 'default',
140
									'NAME' => $admin_group_name['name'],
141
									'CHECKED' => ' checked="checked"'
142
									)
143
							);
144
	$template->parse('group_list', 'group_list_block', true);
145
	/*
146
	if(!in_array(1, $admin->get_groups_id())) {
147
		$users_groups = $admin->get_groups_name();
148
		foreach ($admin->get_groups_id() as $users_group_id) {
149
			$template->set_var(array(
150
										'ID' => $users_group_id,
151
										'TOGGLE' => '',
152
										'DISABLED' => ' disabled',
153
										'LINK_COLOR' => '000000',
154
										'CURSOR' => 'default',
155
										'NAME' => $users_groups[$users_group_id],
156
										'CHECKED' => ' checked'
157
										)
158
								);
159
			$template->parse('group_list', 'group_list_block', true);
160
		}
161
	}
162
	*/
163
	while($group = $get_groups->fetchRow()) {
164
		// check if the user is a member of this group
165
		$flag_disabled = '';
166
		$flag_checked =  '';
167
		$flag_cursor =   'pointer';
168
		$flag_color =    '';
169
		if (in_array($group["group_id"], $admin->get_groups_id())) {
170
			$flag_disabled = ''; //' disabled';
171
			$flag_checked =  ''; //' checked';
172
			$flag_cursor =   'default';
173
			$flag_color =    '000000';
174
		}
175

  
176
		// Check if the group is allowed to edit pages
177
		$system_permissions = explode(',', $group['system_permissions']);
178
		if(is_numeric(array_search('pages_modify', $system_permissions))) {
179
			$template->set_var(array(
180
											'ID' => $group['group_id'],
181
											'TOGGLE' => $group['group_id'],
182
											'DISABLED' => $flag_disabled,
183
											'LINK_COLOR' => $flag_color,
184
											'CURSOR' => $flag_cursor,
185
											'NAME' => $group['name'],
186
											'CHECKED' => $flag_checked
187
											)
188
									);
189
			if(is_numeric(array_search($group['group_id'], $admin_groups))) {
190
				$template->set_var('CHECKED', ' checked="checked"');
191
			} else {
192
				if (!$flag_checked) $template->set_var('CHECKED', '');
193
			}
194
			$template->parse('group_list', 'group_list_block', true);
195
		}
196
	}
197
// Group list 2 (viewing_groups)
198
	$viewing_groups = explode(',', str_replace('_', '', $results_array['viewing_groups']));
199

  
200
	$query = "SELECT * FROM ".TABLE_PREFIX."groups";
201

  
202
	$get_groups = $database->query($query);
203
	$template->set_block('main_block', 'group_list_block2', 'group_list2');
204
	// Insert admin group and current group first
205
	$admin_group_name = $get_groups->fetchRow();
206
	$template->set_var(array(
207
									'ID' => 1,
208
									'TOGGLE' => '',
209
									'DISABLED' => ' disabled="disabled"',
210
									'LINK_COLOR' => '000000',
211
									'CURSOR' => 'default',
212
									'NAME' => $admin_group_name['name'],
213
									'CHECKED' => ' checked="checked"'
214
									)
215
							);
216
	$template->parse('group_list2', 'group_list_block2', true);
217

  
218

  
219
	while($group = $get_groups->fetchRow()) {
220
		// check if the user is a member of this group
221
		$flag_disabled = '';
222
		$flag_checked =  '';
223
		$flag_cursor =   'pointer';
224
		$flag_color =    '';
225
		if (in_array($group["group_id"], $admin->get_groups_id())) {
226
			$flag_disabled = ''; //' disabled';
227
			$flag_checked =  ''; //' checked';
228
			$flag_cursor =   'default';
229
			$flag_color =    '000000';
230
		}
231

  
232
		$template->set_var(array(
233
										'ID' => $group['group_id'],
234
										'TOGGLE' => $group['group_id'],
235
										'DISABLED' => $flag_disabled,
236
										'LINK_COLOR' => $flag_color,
237
										'CURSOR' => $flag_cursor,
238
										'NAME' => $group['name'],
239
										'CHECKED' => $flag_checked
240
										)
241
								);
242
		if(is_numeric(array_search($group['group_id'], $viewing_groups))) {
243
			$template->set_var('CHECKED', 'checked="checked"');
244
		} else {
245
			if (!$flag_checked) $template->set_var('CHECKED', '');
246
		}
247
		$template->parse('group_list2', 'group_list_block2', true);
248
	}
249
// Show private viewers
250
if($results_array['visibility'] == 'private' OR $results_array['visibility'] == 'registered') {
251
	$template->set_var('DISPLAY_VIEWERS', '');
252
} else {
253
	$template->set_var('DISPLAY_VIEWERS', 'none');
254
}
255

  
256
// Parent page list
257
$database = new database();
258
function parent_list($parent) {
259
	global $admin, $database, $template, $results_array;
260
	$query = "SELECT * FROM ".TABLE_PREFIX."pages WHERE parent = '$parent' ORDER BY position ASC";
261
	$get_pages = $database->query($query);
262
	while($page = $get_pages->fetchRow()) {
263
		if($admin->page_is_visible($page)==false)
264
			continue;
265
		// if psrent = 0 set flag_icon
266
		$template->set_var('FLAG_ROOT_ICON',' none ');
267
		if( $page['parent'] == 0 ) {
268
			$template->set_var('FLAG_ROOT_ICON','url('.THEME_URL.'/images/flags/'.strtolower($page['language']).'.png)');
269
		}
270
		// If the current page cannot be parent, then its children neither
271
		$list_next_level = true;
272
		// Stop users from adding pages with a level of more than the set page level limit
273
		if($page['level']+1 < PAGE_LEVEL_LIMIT) {
274
			// Get user perms
275
			$admin_groups = explode(',', str_replace('_', '', $page['admin_groups']));
276
			$admin_users = explode(',', str_replace('_', '', $page['admin_users']));
277
			$in_group = FALSE;
278
			foreach($admin->get_groups_id() as $cur_gid){
279
				if (in_array($cur_gid, $admin_groups)) {
280
					$in_group = TRUE;
281
				}
282
			}
283
			if(($in_group) OR is_numeric(array_search($admin->get_user_id(), $admin_users))) {
284
				$can_modify = true;
285
			} else {
286
				$can_modify = false;
287
			}
288
			// Title -'s prefix
289
			$title_prefix = '';
290
			for($i = 1; $i <= $page['level']; $i++) { $title_prefix .= ' - '; }
291
			$template->set_var(array(
292
											'ID' => $page['page_id'],
293
											'TITLE' => ($title_prefix.$page['page_title']),
294
											'FLAG_ICON' => 'none',
295
											));
296

  
297
			if($results_array['parent'] == $page['page_id']) {
298
				$template->set_var('SELECTED', ' selected="selected"');
299
			} elseif($results_array['page_id'] == $page['page_id']) {
300
				$template->set_var('SELECTED', ' disabled="disabled" class="disabled"');
301
				$list_next_level=false;
302
			} elseif($can_modify != true) {
303
				$template->set_var('SELECTED', ' disabled="disabled" class="disabled"');
304
			} else {
305
				$template->set_var('SELECTED', '');
306
			}
307
			$template->parse('page_list2', 'page_list_block2', true);
308
		}
309
		if ($list_next_level)
310
			parent_list($page['page_id']);
311
	}
312
}
313

  
314
$template->set_block('main_block', 'page_list_block2', 'page_list2');
315
if($admin->get_permission('pages_add_l0') == true OR $results_array['level'] == 0) {
316
	if($results_array['parent'] == 0) {
317
		$selected = ' selected';
318
	} else { 
319
		$selected = '';
320
	}
321
	$template->set_var(array(
322
									'ID' => '0',
323
									'TITLE' => $TEXT['NONE'],
324
									'SELECTED' => $selected
325
									)
326
							);
327
	$template->parse('page_list2', 'page_list_block2', true);
328
}
329
parent_list(0);
330

  
331
if($modified_ts == 'Unknown') {
332
	$template->set_var('DISPLAY_MODIFIED', 'hide');
333
} else {
334
	$template->set_var('DISPLAY_MODIFIED', '');
335
}
336
// Templates list
337
$template->set_block('main_block', 'template_list_block', 'template_list');
338
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' and function = 'template' order by name");
339
if($result->numRows() > 0) {
340
	while($addon = $result->fetchRow()) { 
341
		// Check if the user has perms to use this template
342
		if($addon['directory'] == $results_array['template'] OR $admin->get_permission($addon['directory'], 'template') == true) {
343
			$template->set_var('VALUE', $addon['directory']);
344
			$template->set_var('NAME', $addon['name']);
345
			if($addon['directory'] == $results_array['template']) {
346
				$template->set_var('SELECTED', ' selected="selected"');
347
			} else {
348
				$template->set_var('SELECTED', '');
349
			}
350
			$template->parse('template_list', 'template_list_block', true);
351
		}
352
	}
353
}
354

  
355
// Menu list
356
if(MULTIPLE_MENUS == false) {
357
	$template->set_var('DISPLAY_MENU_LIST', 'none');
358
}
359
// Include template info file (if it exists)
360
if($results_array['template'] != '') {
361
	$template_location = WB_PATH.'/templates/'.$results_array['template'].'/info.php';
362
} else {
363
	$template_location = WB_PATH.'/templates/'.DEFAULT_TEMPLATE.'/info.php';
364
}
365
if(file_exists($template_location)) {
366
	require($template_location);
367
}
368
// Check if $menu is set
369
if(!isset($menu[1]) OR $menu[1] == '') {
370
	// Make our own menu list
371
	$menu[1] = $TEXT['MAIN'];
372
}
373
// Add menu options to the list
374
$template->set_block('main_block', 'menu_list_block', 'menu_list');
375
foreach($menu AS $number => $name) {
376
	$template->set_var('NAME', $name);
377
	$template->set_var('VALUE', $number);
378
	if($results_array['menu'] == $number) {
379
		$template->set_var('SELECTED', ' selected="selected"');
380
	} else {
381
		$template->set_var('SELECTED', '');
382
	}
383
	$template->parse('menu_list', 'menu_list_block', true);
384
}
385

  
386
// Insert language values
387
$template->set_block('main_block', 'language_list_block', 'language_list');
388
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'language' order by name");
389
if($result->numRows() > 0) {
390
	while($addon = $result->fetchRow()) {
391
		$l_codes[$addon['name']] = $addon['directory'];
392
		$l_names[$addon['name']] = entities_to_7bit($addon['name']); // sorting-problem workaround
393
	}
394
	asort($l_names);
395
	foreach($l_names as $l_name=>$v) {
396
		// Insert code and name
397
		$template->set_var(array(
398
								'VALUE' => $l_codes[$l_name],
399
								'NAME' => $l_name,
400
								'FLAG_LANG_ICONS' => 'url('.THEME_URL.'/images/flags/'.strtolower($l_codes[$l_name]).'.png)',
401
								));
402
		// Check if it is selected
403
		if($results_array['language'] == $l_codes[$l_name]) {
404
			$template->set_var('SELECTED', ' selected="selected"');
405
		} else {
406
			$template->set_var('SELECTED', '');
407
		}
408
		$template->parse('language_list', 'language_list_block', true);
409
	}
410
}
411

  
412
// Select disabled if searching is disabled
413
if($results_array['searching'] == 0) {
414
	$template->set_var('SEARCHING_DISABLED', ' selected="selected"');
415
}
416
// Select what the page target is
417
switch ($results_array['target']) {
418
	case '_top':
419
		$template->set_var('TOP_SELECTED', ' selected="selected"');
420
		break;
421
	case '_self':
422
		$template->set_var('SELF_SELECTED', ' selected="selected"');
423
		break;
424
	case '_blank':
425
		$template->set_var('BLANK_SELECTED', ' selected="selected"');
426
		break;
427
}
428
	
429

  
430
// Insert language text
431
$template->set_var(array(
432
				'HEADING_MODIFY_PAGE_SETTINGS' => $HEADING['MODIFY_PAGE_SETTINGS'],
433
				'TEXT_CURRENT_PAGE' => $TEXT['CURRENT_PAGE'],
434
				'TEXT_MODIFY' => $TEXT['MODIFY'],
435
				'TEXT_MODIFY_PAGE' => $HEADING['MODIFY_PAGE'],
436
				'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'],
437
				'TEXT_PAGE_TITLE' => $TEXT['PAGE_TITLE'],
438
				'TEXT_MENU_TITLE' => $TEXT['MENU_TITLE'],
439
				'TEXT_TYPE' => $TEXT['TYPE'],
440
				'TEXT_MENU' => $TEXT['MENU'],
441
				'TEXT_PARENT' => $TEXT['PARENT'],
442
				'TEXT_VISIBILITY' => $TEXT['VISIBILITY'],
443
				'TEXT_PUBLIC' => $TEXT['PUBLIC'],
444
				'TEXT_PRIVATE' => $TEXT['PRIVATE'],
445
				'TEXT_REGISTERED' => $TEXT['REGISTERED'],
446
				'TEXT_NONE' => $TEXT['NONE'],
447
				'TEXT_HIDDEN' => $TEXT['HIDDEN'],
448
				'TEXT_TEMPLATE' => $TEXT['TEMPLATE'],
449
				'TEXT_TARGET' => $TEXT['TARGET'],
450
				'TEXT_SYSTEM_DEFAULT' => $TEXT['SYSTEM_DEFAULT'],
451
				'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
452
				'TEXT_NEW_WINDOW' => $TEXT['NEW_WINDOW'],
453
				'TEXT_SAME_WINDOW' => $TEXT['SAME_WINDOW'],
454
				'TEXT_TOP_FRAME' => $TEXT['TOP_FRAME'],
455
				'TEXT_ADMINISTRATORS' => $TEXT['ADMINISTRATORS'],
456
				'TEXT_ALLOWED_VIEWERS' => $TEXT['ALLOWED_VIEWERS'],
457
				'TEXT_DESCRIPTION' => $TEXT['DESCRIPTION'],
458
				'TEXT_KEYWORDS' => $TEXT['KEYWORDS'],
459
				'TEXT_SEARCHING' => $TEXT['SEARCHING'],
460
				'TEXT_LANGUAGE' => $TEXT['LANGUAGE'],
461
				'TEXT_ENABLED' => $TEXT['ENABLED'],
462
				'TEXT_DISABLED' => $TEXT['DISABLED'],
463
				'TEXT_SAVE' => $TEXT['SAVE'],
464
				'TEXT_RESET' => $TEXT['RESET'],
465
				'LAST_MODIFIED' => $MESSAGE['PAGES']['LAST_MODIFIED'],
466
				'HEADING_MODIFY_PAGE' => $HEADING['MODIFY_PAGE']
467
			) );
468

  
469
$template->parse('main', 'main_block', false);
470
$template->pparse('output', 'page');
471

  
472
// Print admin footer
473
$admin->print_footer();
474

  
475
?>

Also available in: Unified diff