1 |
1289
|
kweitzel
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category admin
|
5 |
|
|
* @package access
|
6 |
|
|
* @author WebsiteBaker Project
|
7 |
|
|
* @copyright 2004-2009, Ryan Djurovich
|
8 |
|
|
* @copyright 2009-2010, 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 4.3.4 and higher
|
13 |
|
|
* @version $Id$
|
14 |
|
|
* @filesource $HeadURL: $
|
15 |
|
|
* @lastmodified $Date: $
|
16 |
|
|
*
|
17 |
|
|
*
|
18 |
|
|
*/
|
19 |
|
|
|
20 |
|
|
require('../../config.php');
|
21 |
|
|
require_once(WB_PATH.'/framework/class.admin.php');
|
22 |
|
|
$admin = new admin('Access', 'access');
|
23 |
|
|
|
24 |
|
|
// Setup template object
|
25 |
|
|
$template = new Template(THEME_PATH.'/templates');
|
26 |
|
|
$template->set_file('page', 'access.htt');
|
27 |
|
|
|
28 |
|
|
$template->set_block('page', 'main_block', 'main');
|
29 |
|
|
$template->set_block('main_block', 'users_block', 'user');
|
30 |
|
|
$template->set_block('main_block', 'groups_block', 'group');
|
31 |
|
|
|
32 |
|
|
// Insert values into the template object
|
33 |
|
|
$template->set_var(array(
|
34 |
|
|
'ADMIN_URL' => ADMIN_URL,
|
35 |
|
|
'THEME_URL' => THEME_URL,
|
36 |
|
|
'WB_URL' => WB_URL
|
37 |
|
|
)
|
38 |
|
|
);
|
39 |
|
|
|
40 |
|
|
/**
|
41 |
|
|
* Insert permission values into the template object
|
42 |
|
|
* Deprecated - as we are using blocks.
|
43 |
|
|
*/
|
44 |
|
|
$display_none = "style=\"display: none;\"";
|
45 |
|
|
if($admin->get_permission('users') != true) $template->set_var('DISPLAY_USERS', $display_none);
|
46 |
|
|
if($admin->get_permission('groups') != true) $template->set_var('DISPLAY_GROUPS', $display_none);
|
47 |
|
|
|
48 |
|
|
// Insert section names and descriptions
|
49 |
|
|
$template->set_var(array(
|
50 |
|
|
'USERS' => $MENU['USERS'],
|
51 |
|
|
'GROUPS' => $MENU['GROUPS'],
|
52 |
|
|
'ACCESS' => $MENU['ACCESS'],
|
53 |
|
|
'USERS_OVERVIEW' => $OVERVIEW['USERS'],
|
54 |
|
|
'GROUPS_OVERVIEW' => $OVERVIEW['GROUPS'],
|
55 |
|
|
)
|
56 |
|
|
);
|
57 |
|
|
|
58 |
|
|
if ( $admin->get_permission('users') == true ) $template->parse('main_block', "users_block", true);
|
59 |
|
|
if ( $admin->get_permission('groups') == true ) $template->parse('main_block', "groups_block", true);
|
60 |
|
|
|
61 |
|
|
// Parse template object
|
62 |
|
|
$template->parse('main', 'main_block', false);
|
63 |
|
|
$template->pparse('output', 'page');
|
64 |
|
|
|
65 |
|
|
// Print admin footer
|
66 |
|
|
$admin->print_footer();
|
67 |
|
|
|
68 |
4
|
ryan
|
?>
|