1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category admin
|
5
|
* @package templates
|
6
|
* @author Ryan Djurovich, WebsiteBaker Project
|
7
|
* @copyright 2009-2012, WebsiteBaker 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 2070 2014-01-03 01:21:42Z darkviper $
|
13
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/templates/index.php $
|
14
|
* @lastmodified $Date: 2014-01-03 02:21:42 +0100 (Fri, 03 Jan 2014) $
|
15
|
*
|
16
|
*/
|
17
|
|
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
|
// Setup template object, parse vars to it, then parse it
|
24
|
// Create new template object
|
25
|
$template = new Template(dirname($admin->correct_theme_source('templates.htt')),'keep');
|
26
|
// $template->debug = true;
|
27
|
$template->set_file('page', 'templates.htt');
|
28
|
$template->set_block('page', 'main_block', 'main');
|
29
|
$template->set_var('FTAN', $admin->getFTAN());
|
30
|
|
31
|
// Insert values into template list
|
32
|
$template->set_block('main_block', 'template_list_block', 'template_list');
|
33
|
$sql = 'SELECT `directory`, `name`, `function` FROM `'.TABLE_PREFIX.'addons` '
|
34
|
. 'WHERE `type`=\'template\' ORDER BY `name`';
|
35
|
if(($result = $database->query($sql))) {
|
36
|
while($addon = $result->fetchRow(MYSQL_ASSOC))
|
37
|
{
|
38
|
if ($admin->get_permission($addon['directory'],'template')==false) { continue;}
|
39
|
$template->set_var('VALUE', $addon['directory']);
|
40
|
$template->set_var('NAME', (($addon['function'] == 'theme' ? '[Theme] ' : '').$addon['name']));
|
41
|
$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
|
//$mLang = ModLanguage::getInstance();
|
57
|
//$mLang->setLanguage(ADMIN_PATH.'/addons/languages/', LANGUAGE, DEFAULT_LANGUAGE);
|
58
|
$mLang = Translate::getinstance();
|
59
|
$mLang->enableAddon('admin\addons');
|
60
|
|
61
|
/*-- insert all needed vars from language files ----------------------------------------*/
|
62
|
$template->set_var($mLang->getLangArray());
|
63
|
|
64
|
// insert urls
|
65
|
$template->set_var(array(
|
66
|
'ADMIN_URL' => ADMIN_URL,
|
67
|
'WB_URL' => WB_URL,
|
68
|
'THEME_URL' => THEME_URL,
|
69
|
'FTAN' => $admin->getFTAN()
|
70
|
)
|
71
|
);
|
72
|
// Insert language text and messages
|
73
|
$template->set_var(array(
|
74
|
'URL_MODULES' => $admin->get_permission('modules') ?
|
75
|
'<a href="' . ADMIN_URL . '/modules/index.php">' . $mLang->MENU_MODULES . '</a>' : '<b>'.$mLang->MENU_MODULES.'</b>',
|
76
|
'URL_LANGUAGES' => $admin->get_permission('languages') ?
|
77
|
'<a href="' . ADMIN_URL . '/languages/index.php">' . $mLang->MENU_LANGUAGES . '</a>' : '<b>'.$mLang->MENU_LANGUAGES.'</b>',
|
78
|
'URL_ADVANCED' => $admin->get_permission('modules_advanced')
|
79
|
? '<a href="' . ADMIN_URL . '/addons/index.php?advanced">' . $mLang->TEXT_ADVANCED . '</a>' : '<b>'.$mLang->TEXT_ADVANCED.'</b>' ,
|
80
|
)
|
81
|
);
|
82
|
|
83
|
// Parse template object
|
84
|
$template->parse('main', 'main_block', false);
|
85
|
$template->pparse('output', 'page');
|
86
|
|
87
|
$mLang->disableAddon();
|
88
|
// Print admin footer
|
89
|
$admin->print_footer();
|