1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category admin
|
5
|
* @package addons
|
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: index.php 1529 2011-11-25 05:03:32Z Luisehahne $
|
13
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/addons/index.php $
|
14
|
* @lastmodified $Date: 2011-11-25 06:03:32 +0100 (Fri, 25 Nov 2011) $
|
15
|
*
|
16
|
*/
|
17
|
|
18
|
require('../../config.php');
|
19
|
require_once(WB_PATH.'/framework/class.admin.php');
|
20
|
$admin = new admin('Addons', 'addons');
|
21
|
|
22
|
// Setup template object, parse vars to it, then parse it
|
23
|
$ThemePath = realpath(WB_PATH.$admin->correct_theme_source('addons.htt'));
|
24
|
// Create new template object
|
25
|
$template = new Template($ThemePath);
|
26
|
$template->set_file('page', 'addons.htt');
|
27
|
$template->set_block('page', 'main_block', 'main');
|
28
|
|
29
|
// Insert values into the template object
|
30
|
$template->set_var(array(
|
31
|
'ADMIN_URL' => ADMIN_URL,
|
32
|
'THEME_URL' => THEME_URL,
|
33
|
'WB_URL' => WB_URL
|
34
|
)
|
35
|
);
|
36
|
|
37
|
/**
|
38
|
* Setting up the blocks
|
39
|
*/
|
40
|
$template->set_block('main_block', "modules_block", "modules");
|
41
|
$template->set_block('main_block', "templates_block", "templates");
|
42
|
$template->set_block('main_block', "languages_block", "languages");
|
43
|
$template->set_block('main_block', "reload_block", "reload");
|
44
|
|
45
|
/**
|
46
|
* Insert permission values into the template object
|
47
|
* Obsolete as we are using blocks ... see "parsing the blocks" section
|
48
|
*/
|
49
|
$display_none = "style=\"display: none;\"";
|
50
|
if($admin->get_permission('modules') != true) $template->set_var('DISPLAY_MODULES', $display_none);
|
51
|
if($admin->get_permission('templates') != true) $template->set_var('DISPLAY_TEMPLATES', $display_none);
|
52
|
if($admin->get_permission('languages') != true) $template->set_var('DISPLAY_LANGUAGES', $display_none);
|
53
|
if($admin->get_permission('admintools') != true) $template->set_var('DISPLAY_ADVANCED', $display_none);
|
54
|
|
55
|
if(!isset($_GET['advanced']) || $admin->get_permission('admintools') != true)
|
56
|
$template->set_var('DISPLAY_RELOAD', $display_none);
|
57
|
|
58
|
/**
|
59
|
* Insert section names and descriptions
|
60
|
*/
|
61
|
$template->set_var(array(
|
62
|
'ADDONS_OVERVIEW' => $MENU['ADDONS'],
|
63
|
'MODULES' => $MENU['MODULES'],
|
64
|
'TEMPLATES' => $MENU['TEMPLATES'],
|
65
|
'LANGUAGES' => $MENU['LANGUAGES'],
|
66
|
'MODULES_OVERVIEW' => $OVERVIEW['MODULES'],
|
67
|
'TEMPLATES_OVERVIEW' => $OVERVIEW['TEMPLATES'],
|
68
|
'LANGUAGES_OVERVIEW' => $OVERVIEW['LANGUAGES'],
|
69
|
'TXT_ADMIN_SETTINGS' => $TEXT['ADMIN'] . ' ' . $TEXT['SETTINGS'],
|
70
|
'MESSAGE_RELOAD_ADDONS' => $MESSAGE['ADDON']['RELOAD'],
|
71
|
'TEXT_RELOAD' => $TEXT['RELOAD'],
|
72
|
'RELOAD_URL' => ADMIN_URL . '/addons/reload.php',
|
73
|
'URL_ADVANCED' => $admin->get_permission('admintools')
|
74
|
? '<a href="' . ADMIN_URL . '/addons/index.php?advanced">' . $TEXT['ADVANCED'] . '</a>' : '',
|
75
|
'ADVANCED_URL' => $admin->get_permission('admintools') ? ADMIN_URL . '/addons/index.php' : '',
|
76
|
'TEXT_ADVANCED' => $TEXT['ADVANCED'],
|
77
|
'FTAN' => $admin->getFTAN()
|
78
|
)
|
79
|
);
|
80
|
|
81
|
/**
|
82
|
* Parsing the blocks ...
|
83
|
*/
|
84
|
if ( $admin->get_permission('modules') == true) $template->parse('main_block', "modules_block", true);
|
85
|
if ( $admin->get_permission('templates') == true) $template->parse('main_block', "templates_block", true);
|
86
|
if ( $admin->get_permission('languages') == true) $template->parse('main_block', "languages_block", true);
|
87
|
if ( isset($_GET['advanced']) AND $admin->get_permission('admintools') == true) $template->parse('main_block', "reload_block", true);
|
88
|
|
89
|
/**
|
90
|
* Parse template object
|
91
|
*/
|
92
|
$template->parse('main', 'main_block', false);
|
93
|
$template->pparse('output', 'page');
|
94
|
|
95
|
/**
|
96
|
* Print admin footer
|
97
|
*/
|
98
|
$admin->print_footer();
|
99
|
|
100
|
?>
|