1 |
944
|
Ruebenwurz
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
1644
|
darkviper
|
* @category WB
|
5 |
|
|
* @package WB_BackendTheme
|
6 |
1642
|
Luisehahne
|
* @author Johannes Tassilo Gruber, WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2012, WebsiteBaker Org. e.V.
|
8 |
|
|
* @link http://www.websitebaker.org/
|
9 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
10 |
|
|
* @platform WebsiteBaker 2.8.3
|
11 |
|
|
* @requirements PHP 5.2.2 and higher
|
12 |
2070
|
darkviper
|
* @version $Id$
|
13 |
|
|
* @filesource $HeadURL$
|
14 |
|
|
* @lastmodified $Date$
|
15 |
944
|
Ruebenwurz
|
*
|
16 |
1642
|
Luisehahne
|
*/
|
17 |
944
|
Ruebenwurz
|
|
18 |
1642
|
Luisehahne
|
/* -------------------------------------------------------- */
|
19 |
|
|
if(defined('WB_PATH') == false)
|
20 |
|
|
{
|
21 |
|
|
// Stop this file being access directly
|
22 |
|
|
die('<head><title>Access denied</title></head><body><h2 style="color:red;margin:3em auto;text-align:center;">Cannot access this file directly</h2></body></html>');
|
23 |
|
|
}
|
24 |
|
|
/* -------------------------------------------------------- */
|
25 |
|
|
|
26 |
944
|
Ruebenwurz
|
// OBLIGATORY WEBSITE BAKER VARIABLES
|
27 |
2090
|
darkviper
|
$template_directory = 'WbTheme';
|
28 |
|
|
$template_name = 'WB default Theme';
|
29 |
944
|
Ruebenwurz
|
$template_function = 'theme';
|
30 |
2090
|
darkviper
|
$template_version = '2.8.4';
|
31 |
|
|
$template_platform = '2.8.4';
|
32 |
954
|
Ruebenwurz
|
$template_author = 'Johannes Tassilo Gruber';
|
33 |
944
|
Ruebenwurz
|
$template_license = '<a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>';
|
34 |
|
|
$template_license_terms = '-';
|
35 |
2090
|
darkviper
|
$template_description = 'Default backend theme for Website Baker 2.8.4 and above';
|