Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        admin
5
 * @package         addons
6
 * @author          Ryan Djurovich, WebsiteBaker Project
7
 * @author          Werner v.d. Decken
8
 * @copyright       WebsiteBaker Org. e.V.
9
 * @link            http://websitebaker.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.3
12
 * @requirements    PHP 5.3.6 and higher
13
 * @version         $Id: index.php 2 2017-07-02 15:14:29Z Manuela $
14
 * @filesource      $HeadURL: svn://isteam.dynxs.de/wb/2.10.x/trunk/admin/addons/index.php $
15
 * @lastmodified    $Date: 2017-07-02 17:14:29 +0200 (Sun, 02 Jul 2017) $
16
 *
17
 */
18

    
19
if ( !defined( 'WB_PATH' ) ){ require( dirname(dirname((__DIR__))).'/config.php' ); }
20
if ( !class_exists('admin', false) ) { require(WB_PATH.'/framework/class.admin.php'); }
21
$admin = new admin('Addons', 'addons');
22

    
23
// Setup template object, parse vars to it, then parse it
24
// Create new template object
25
$template = new Template(dirname($admin->correct_theme_source('addons.htt')));
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')? ADMIN_URL . '/addons/index.php?advanced' : '',
74
    'ADVANCED_URL' => $admin->get_permission('admintools') ? ADMIN_URL . '/addons/index.php' : '',
75
    'TEXT_ADVANCED' => $TEXT['ADVANCED'],
76
    'FTAN'            => $admin->getFTAN()
77
    )
78
);
79

    
80
/**
81
 *    Parsing the blocks ...
82
 */
83
if ( $admin->get_permission('modules') == true) $template->parse('main_block', "modules_block", true);
84
if ( $admin->get_permission('templates') == true) $template->parse('main_block', "templates_block", true);
85
if ( $admin->get_permission('languages') == true) $template->parse('main_block', "languages_block", true);
86
if ( isset($_GET['advanced']) AND $admin->get_permission('admintools') == true) $template->parse('main_block', "reload_block", true);
87

    
88
/**
89
 *    Parse template object
90
 */
91
$template->parse('main', 'main_block', false);
92
$template->pparse('output', 'page');
93

    
94
/**
95
 *    Print admin footer
96
 */
97
$admin->print_footer();
(1-1/2)