1 |
1529
|
Luisehahne
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category admin
|
5 |
|
|
* @package access
|
6 |
|
|
* @author Ryan Djurovich, WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2011, Website Baker Org. e.V.
|
8 |
|
|
* @link http://www.websitebaker2.org/
|
9 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
10 |
|
|
* @platform WebsiteBaker 2.8.x
|
11 |
|
|
* @requirements PHP 5.2.2 and higher
|
12 |
|
|
* @version $Id$
|
13 |
|
|
* @filesource $HeadURL: $
|
14 |
|
|
* @lastmodified $Date: $
|
15 |
|
|
*
|
16 |
|
|
*
|
17 |
|
|
*/
|
18 |
|
|
|
19 |
|
|
require('../../config.php');
|
20 |
|
|
require_once(WB_PATH.'/framework/class.admin.php');
|
21 |
|
|
$admin = new admin('Access', 'access');
|
22 |
|
|
|
23 |
|
|
// Setup template object, parse vars to it, then parse it
|
24 |
|
|
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('access.htt'));
|
25 |
|
|
// Create new template object
|
26 |
|
|
$template = new Template($ThemePath);
|
27 |
|
|
// $template->debug = true;
|
28 |
|
|
$template->set_file('page', 'access.htt');
|
29 |
|
|
|
30 |
|
|
$template->set_block('page', 'main_block', 'main');
|
31 |
|
|
$template->set_block('main_block', 'users_block', 'user');
|
32 |
|
|
$template->set_block('main_block', 'groups_block', 'group');
|
33 |
|
|
|
34 |
|
|
// Insert values into the template object
|
35 |
|
|
$template->set_var(array(
|
36 |
|
|
'ADMIN_URL' => ADMIN_URL,
|
37 |
|
|
'THEME_URL' => THEME_URL,
|
38 |
|
|
'WB_URL' => WB_URL
|
39 |
|
|
)
|
40 |
|
|
);
|
41 |
|
|
|
42 |
|
|
/**
|
43 |
|
|
* Insert permission values into the template object
|
44 |
|
|
* Deprecated - as we are using blocks.
|
45 |
|
|
*/
|
46 |
|
|
$display_none = "style=\"display: none;\"";
|
47 |
|
|
if($admin->get_permission('users') != true) $template->set_var('DISPLAY_USERS', $display_none);
|
48 |
|
|
if($admin->get_permission('groups') != true) $template->set_var('DISPLAY_GROUPS', $display_none);
|
49 |
|
|
|
50 |
|
|
// Insert section names and descriptions
|
51 |
|
|
$template->set_var(array(
|
52 |
|
|
'USERS' => $MENU['USERS'],
|
53 |
|
|
'GROUPS' => $MENU['GROUPS'],
|
54 |
|
|
'ACCESS' => $MENU['ACCESS'],
|
55 |
|
|
'USERS_OVERVIEW' => $OVERVIEW['USERS'],
|
56 |
|
|
'GROUPS_OVERVIEW' => $OVERVIEW['GROUPS'],
|
57 |
|
|
)
|
58 |
|
|
);
|
59 |
|
|
|
60 |
|
|
if ( $admin->get_permission('users') == true ) $template->parse('main_block', "users_block", true);
|
61 |
|
|
if ( $admin->get_permission('groups') == true ) $template->parse('main_block', "groups_block", true);
|
62 |
|
|
|
63 |
|
|
// Parse template object
|
64 |
|
|
$template->parse('main', 'main_block', false);
|
65 |
|
|
$template->pparse('output', 'page');
|
66 |
|
|
|
67 |
|
|
// Print admin footer
|
68 |
|
|
$admin->print_footer();
|
69 |
|
|
|
70 |
4
|
ryan
|
?>
|