1 |
238
|
stefan
|
<?php
|
2 |
1467
|
Luisehahne
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category admin
|
5 |
|
|
* @package templates
|
6 |
1529
|
Luisehahne
|
* @author Ryan Djurovich, WebsiteBaker Project
|
7 |
1712
|
Luisehahne
|
* @copyright 2009-2012, WebsiteBaker Org. e.V.
|
8 |
1467
|
Luisehahne
|
* @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 |
238
|
stefan
|
|
18 |
|
|
// Print admin header
|
19 |
|
|
require('../../config.php');
|
20 |
|
|
require_once(WB_PATH.'/framework/class.admin.php');
|
21 |
|
|
$admin = new admin('Addons', 'templates');
|
22 |
|
|
|
23 |
1529
|
Luisehahne
|
// Setup template object, parse vars to it, then parse it
|
24 |
|
|
// Create new template object
|
25 |
1712
|
Luisehahne
|
$template = new Template(dirname($admin->correct_theme_source('templates.htt')),'keep');
|
26 |
1529
|
Luisehahne
|
// $template->debug = true;
|
27 |
944
|
Ruebenwurz
|
$template->set_file('page', 'templates.htt');
|
28 |
238
|
stefan
|
$template->set_block('page', 'main_block', 'main');
|
29 |
1355
|
FrankH
|
$template->set_var('FTAN', $admin->getFTAN());
|
30 |
238
|
stefan
|
|
31 |
|
|
// Insert values into template list
|
32 |
|
|
$template->set_block('main_block', 'template_list_block', 'template_list');
|
33 |
1643
|
darkviper
|
$sql = 'SELECT `directory`, `name`, `function` FROM `'.TABLE_PREFIX.'addons` '
|
34 |
|
|
. 'WHERE `type`=\'template\' ORDER BY `name`';
|
35 |
|
|
if(($result = $database->query($sql))) {
|
36 |
1712
|
Luisehahne
|
while($addon = $result->fetchRow(MYSQL_ASSOC))
|
37 |
|
|
{
|
38 |
|
|
if ($admin->get_permission($addon['directory'],'template')==false) { continue;}
|
39 |
238
|
stefan
|
$template->set_var('VALUE', $addon['directory']);
|
40 |
1643
|
darkviper
|
$template->set_var('NAME', (($addon['function'] == 'theme' ? '[Theme] ' : '').$addon['name']));
|
41 |
238
|
stefan
|
$template->parse('template_list', 'template_list_block', true);
|
42 |
|
|
}
|
43 |
|
|
}
|
44 |
|
|
|
45 |
|
|
// Insert permissions values
|
46 |
|
|
if($admin->get_permission('templates_install') != true) {
|
47 |
|
|
$template->set_var('DISPLAY_INSTALL', 'hide');
|
48 |
|
|
}
|
49 |
|
|
if($admin->get_permission('templates_uninstall') != true) {
|
50 |
|
|
$template->set_var('DISPLAY_UNINSTALL', 'hide');
|
51 |
|
|
}
|
52 |
|
|
if($admin->get_permission('templates_view') != true) {
|
53 |
|
|
$template->set_var('DISPLAY_LIST', 'hide');
|
54 |
|
|
}
|
55 |
|
|
|
56 |
1712
|
Luisehahne
|
$mLang = ModLanguage::getInstance();
|
57 |
|
|
$mLang->setLanguage(ADMIN_PATH.'/addons/languages/', LANGUAGE, DEFAULT_LANGUAGE);
|
58 |
|
|
|
59 |
|
|
/*-- insert all needed vars from language files ----------------------------------------*/
|
60 |
|
|
$template->set_var($mLang->getLangArray());
|
61 |
|
|
|
62 |
1457
|
Luisehahne
|
// insert urls
|
63 |
|
|
$template->set_var(array(
|
64 |
|
|
'ADMIN_URL' => ADMIN_URL,
|
65 |
|
|
'WB_URL' => WB_URL,
|
66 |
|
|
'THEME_URL' => THEME_URL,
|
67 |
|
|
'FTAN' => $admin->getFTAN()
|
68 |
|
|
)
|
69 |
|
|
);
|
70 |
238
|
stefan
|
// Insert language text and messages
|
71 |
|
|
$template->set_var(array(
|
72 |
1712
|
Luisehahne
|
'URL_MODULES' => $admin->get_permission('modules') ?
|
73 |
|
|
'<a href="' . ADMIN_URL . '/modules/index.php">' . $mLang->MENU_MODULES . '</a>' : '<b>'.$mLang->MENU_MODULES.'</b>',
|
74 |
1457
|
Luisehahne
|
'URL_LANGUAGES' => $admin->get_permission('languages') ?
|
75 |
1712
|
Luisehahne
|
'<a href="' . ADMIN_URL . '/languages/index.php">' . $mLang->MENU_LANGUAGES . '</a>' : '<b>'.$mLang->MENU_LANGUAGES.'</b>',
|
76 |
1789
|
Luisehahne
|
'URL_ADVANCED' => $admin->get_permission('modules_advanced')
|
77 |
1712
|
Luisehahne
|
? '<a href="' . ADMIN_URL . '/addons/index.php?advanced">' . $mLang->TEXT_ADVANCED . '</a>' : '<b>'.$mLang->TEXT_ADVANCED.'</b>' ,
|
78 |
928
|
doc
|
)
|
79 |
|
|
);
|
80 |
238
|
stefan
|
|
81 |
|
|
// Parse template object
|
82 |
|
|
$template->parse('main', 'main_block', false);
|
83 |
|
|
$template->pparse('output', 'page');
|
84 |
|
|
|
85 |
|
|
// Print admin footer
|
86 |
|
|
$admin->print_footer();
|