1 |
4
|
ryan
|
<?php
|
2 |
|
|
|
3 |
310
|
ryan
|
// $Id$
|
4 |
4
|
ryan
|
|
5 |
|
|
/*
|
6 |
|
|
|
7 |
|
|
Website Baker Project <http://www.websitebaker.org/>
|
8 |
519
|
Ruebenwurz
|
Copyright (C) 2004-2008, Ryan Djurovich
|
9 |
4
|
ryan
|
|
10 |
|
|
Website Baker is free software; you can redistribute it and/or modify
|
11 |
|
|
it under the terms of the GNU General Public License as published by
|
12 |
|
|
the Free Software Foundation; either version 2 of the License, or
|
13 |
|
|
(at your option) any later version.
|
14 |
|
|
|
15 |
|
|
Website Baker is distributed in the hope that it will be useful,
|
16 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18 |
|
|
GNU General Public License for more details.
|
19 |
|
|
|
20 |
|
|
You should have received a copy of the GNU General Public License
|
21 |
|
|
along with Website Baker; if not, write to the Free Software
|
22 |
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23 |
|
|
|
24 |
|
|
*/
|
25 |
|
|
|
26 |
|
|
require('../../config.php');
|
27 |
|
|
require_once(WB_PATH.'/framework/class.admin.php');
|
28 |
|
|
$admin = new admin('Start','start');
|
29 |
|
|
|
30 |
|
|
// Setup template object
|
31 |
|
|
$template = new Template(ADMIN_PATH.'/start');
|
32 |
|
|
$template->set_file('page', 'template.html');
|
33 |
|
|
$template->set_block('page', 'main_block', 'main');
|
34 |
|
|
|
35 |
|
|
// Insert values into the template object
|
36 |
|
|
$template->set_var(array(
|
37 |
|
|
'WELCOME_MESSAGE' => $MESSAGE['START']['WELCOME_MESSAGE'],
|
38 |
|
|
'CURRENT_USER' => $MESSAGE['START']['CURRENT_USER'],
|
39 |
|
|
'DISPLAY_NAME' => $admin->get_display_name(),
|
40 |
|
|
'ADMIN_URL' => ADMIN_URL,
|
41 |
311
|
ryan
|
'WB_URL' => WB_URL,
|
42 |
|
|
'WB_VERSION' => WB_VERSION
|
43 |
4
|
ryan
|
)
|
44 |
|
|
);
|
45 |
|
|
|
46 |
|
|
// Insert permission values into the template object
|
47 |
|
|
if($admin->get_permission('pages') != true) {
|
48 |
|
|
$template->set_var('DISPLAY_PAGES', 'none');
|
49 |
|
|
}
|
50 |
|
|
if($admin->get_permission('media') != true) {
|
51 |
|
|
$template->set_var('DISPLAY_MEDIA', 'none');
|
52 |
|
|
}
|
53 |
|
|
if($admin->get_permission('addons') != true) {
|
54 |
|
|
$template->set_var('DISPLAY_ADDONS', 'none');
|
55 |
|
|
}
|
56 |
|
|
if($admin->get_permission('access') != true) {
|
57 |
|
|
$template->set_var('DISPLAY_ACCESS', 'none');
|
58 |
|
|
}
|
59 |
|
|
if($admin->get_permission('settings') != true) {
|
60 |
|
|
$template->set_var('DISPLAY_SETTINGS', 'none');
|
61 |
|
|
}
|
62 |
|
|
|
63 |
|
|
// Check if installation directory still exists
|
64 |
|
|
if(file_exists(WB_PATH.'/install/')) {
|
65 |
|
|
// Check if user is part of Adminstrators group
|
66 |
|
|
if($admin->get_group_id() == 1) {
|
67 |
|
|
$template->set_var('WARNING', $MESSAGE['START']['INSTALL_DIR_EXISTS']);
|
68 |
|
|
} else {
|
69 |
|
|
$template->set_var('DISPLAY_WARNING', 'none');
|
70 |
|
|
}
|
71 |
|
|
} else {
|
72 |
|
|
$template->set_var('DISPLAY_WARNING', 'none');
|
73 |
|
|
}
|
74 |
|
|
|
75 |
|
|
// Insert "Add-ons" section overview (pretty complex compared to normal)
|
76 |
|
|
$addons_overview = $TEXT['MANAGE'].' ';
|
77 |
|
|
$addons_count = 0;
|
78 |
|
|
if($admin->get_permission('modules') == true) {
|
79 |
|
|
$addons_overview .= '<a href="'.ADMIN_URL.'/modules/index.php">'.$MENU['MODULES'].'</a>';
|
80 |
|
|
$addons_count = 1;
|
81 |
|
|
}
|
82 |
|
|
if($admin->get_permission('templates') == true) {
|
83 |
|
|
if($addons_count == 1) { $addons_overview .= ', '; }
|
84 |
|
|
$addons_overview .= '<a href="'.ADMIN_URL.'/templates/index.php">'.$MENU['TEMPLATES'].'</a>';
|
85 |
|
|
$addons_count = 1;
|
86 |
|
|
}
|
87 |
|
|
if($admin->get_permission('languages') == true) {
|
88 |
|
|
if($addons_count == 1) { $addons_overview .= ', '; }
|
89 |
|
|
$addons_overview .= '<a href="'.ADMIN_URL.'/languages/index.php">'.$MENU['LANGUAGES'].'</a>';
|
90 |
|
|
}
|
91 |
|
|
|
92 |
|
|
// Insert "Access" section overview (pretty complex compared to normal)
|
93 |
|
|
$access_overview = $TEXT['MANAGE'].' ';
|
94 |
|
|
$access_count = 0;
|
95 |
|
|
if($admin->get_permission('users') == true) {
|
96 |
|
|
$access_overview .= '<a href="'.ADMIN_URL.'/users/index.php">'.$MENU['USERS'].'</a>';
|
97 |
|
|
$access_count = 1;
|
98 |
|
|
}
|
99 |
|
|
if($admin->get_permission('groups') == true) {
|
100 |
|
|
if($access_count == 1) { $access_overview .= ', '; }
|
101 |
|
|
$access_overview .= '<a href="'.ADMIN_URL.'/groups/index.php">'.$MENU['GROUPS'].'</a>';
|
102 |
|
|
$access_count = 1;
|
103 |
|
|
}
|
104 |
|
|
|
105 |
|
|
// Insert section names and descriptions
|
106 |
|
|
$template->set_var(array(
|
107 |
|
|
'HOME' => $MENU['START'],
|
108 |
|
|
'PAGES' => $MENU['PAGES'],
|
109 |
|
|
'MEDIA' => $MENU['MEDIA'],
|
110 |
|
|
'ADDONS' => $MENU['ADDONS'],
|
111 |
|
|
'ACCESS' => $MENU['ACCESS'],
|
112 |
|
|
'PREFERENCES' => $MENU['PREFERENCES'],
|
113 |
|
|
'SETTINGS' => $MENU['SETTINGS'],
|
114 |
|
|
'HELP' => $MENU['HELP'],
|
115 |
|
|
'VIEW' => $MENU['VIEW'],
|
116 |
|
|
'HOME_OVERVIEW' => $OVERVIEW['START'],
|
117 |
|
|
'PAGES_OVERVIEW' => $OVERVIEW['PAGES'],
|
118 |
|
|
'MEDIA_OVERVIEW' => $OVERVIEW['MEDIA'],
|
119 |
|
|
'ADDONS_OVERVIEW' => $addons_overview,
|
120 |
|
|
'ACCESS_OVERVIEW' => $access_overview,
|
121 |
|
|
'PREFERENCES_OVERVIEW' => $OVERVIEW['PREFERENCES'],
|
122 |
|
|
'SETTINGS_OVERVIEW' => $OVERVIEW['SETTINGS'],
|
123 |
|
|
'HELP_OVERVIEW' => $OVERVIEW['HELP'],
|
124 |
|
|
'VIEW_OVERVIEW' => $OVERVIEW['VIEW']
|
125 |
|
|
)
|
126 |
|
|
);
|
127 |
|
|
|
128 |
|
|
// Parse template object
|
129 |
|
|
$template->parse('main', 'main_block', false);
|
130 |
|
|
$template->pparse('output', 'page');
|
131 |
|
|
|
132 |
|
|
// Print admin footer
|
133 |
|
|
$admin->print_footer();
|
134 |
|
|
|
135 |
|
|
?>
|