Project

General

Profile

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 1913 Luisehahne
//$mLang = ModLanguage::getInstance();
57
//$mLang->setLanguage(ADMIN_PATH.'/addons/languages/', LANGUAGE, DEFAULT_LANGUAGE);
58
$mLang = Translate::getinstance();
59
$mLang->enableAddon('admin\addons');
60 1712 Luisehahne
61
/*-- insert all needed vars from language files ----------------------------------------*/
62
$template->set_var($mLang->getLangArray());
63
64 1457 Luisehahne
// 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 238 stefan
// Insert language text and messages
73
$template->set_var(array(
74 1712 Luisehahne
	'URL_MODULES' => $admin->get_permission('modules') ?
75
		'<a href="' . ADMIN_URL . '/modules/index.php">' . $mLang->MENU_MODULES . '</a>' : '<b>'.$mLang->MENU_MODULES.'</b>',
76 1457 Luisehahne
	'URL_LANGUAGES' => $admin->get_permission('languages') ?
77 1712 Luisehahne
		'<a href="' . ADMIN_URL . '/languages/index.php">' . $mLang->MENU_LANGUAGES . '</a>' : '<b>'.$mLang->MENU_LANGUAGES.'</b>',
78 1789 Luisehahne
	'URL_ADVANCED' => $admin->get_permission('modules_advanced')
79 1712 Luisehahne
                ? '<a href="' . ADMIN_URL . '/addons/index.php?advanced">' . $mLang->TEXT_ADVANCED . '</a>' : '<b>'.$mLang->TEXT_ADVANCED.'</b>' ,
80 928 doc
	)
81
);
82 238 stefan
83
// Parse template object
84
$template->parse('main', 'main_block', false);
85
$template->pparse('output', 'page');
86
87 1923 darkviper
$mLang->disableAddon();
88 238 stefan
// Print admin footer
89
$admin->print_footer();