Project

General

Profile

« Previous | Next » 

Revision 1529

Added by Dietmar over 12 years ago

add new backend theme handling (Tks to Stefek)

View differences:

index.php
1
<?php
2
/**
3
 *
4
 * @category        admin
5
 * @package         access
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, 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 5.2.2 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

  
1
<?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

  
68 70
?>

Also available in: Unified diff