1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category WB
|
5
|
* @package WB_BackendTheme
|
6
|
* @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
|
* @version $Id: info.php 2090 2014-01-19 22:08:22Z darkviper $
|
13
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/templates/WbTheme/info.php $
|
14
|
* @lastmodified $Date: 2014-01-19 23:08:22 +0100 (Sun, 19 Jan 2014) $
|
15
|
*
|
16
|
*/
|
17
|
|
18
|
/* -------------------------------------------------------- */
|
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
|
// OBLIGATORY WEBSITE BAKER VARIABLES
|
27
|
$template_directory = 'WbTheme';
|
28
|
$template_name = 'WB default Theme';
|
29
|
$template_function = 'theme';
|
30
|
$template_version = '2.8.4';
|
31
|
$template_platform = '2.8.4';
|
32
|
$template_author = 'Johannes Tassilo Gruber';
|
33
|
$template_license = '<a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>';
|
34
|
$template_license_terms = '-';
|
35
|
$template_description = 'Default backend theme for Website Baker 2.8.4 and above';
|
36
|
|