| 1 | <?php
 | 
  
    | 2 | /**
 | 
  
    | 3 |  * $Id: info.php 2 2017-07-02 15:14:29Z Manuela $
 | 
  
    | 4 |  * Website Baker theme: wb_theme
 | 
  
    | 5 |  * This theme is the default WB backend Theme
 | 
  
    | 6 |  * Feel free to modify or build up on this template.
 | 
  
    | 7 |  *
 | 
  
    | 8 |  * This file defines the template variables required by Website Baker.
 | 
  
    | 9 |  *
 | 
  
    | 10 |  * LICENSE: GNU General Public License
 | 
  
    | 11 |  *
 | 
  
    | 12 |  * @author     Johannes Tassilo Gruber
 | 
  
    | 13 |  * @copyright  GNU General Public License
 | 
  
    | 14 |  * @license    http://www.gnu.org/licenses/gpl.html
 | 
  
    | 15 |  * @version    2.80
 | 
  
    | 16 |  * @platform   Website Baker 2.8
 | 
  
    | 17 |  *
 | 
  
    | 18 |  * Website Baker is free software; you can redistribute it and/or modify
 | 
  
    | 19 |  * it under the terms of the GNU General Public License as published by
 | 
  
    | 20 |  * the Free Software Foundation; either version 2 of the License, or
 | 
  
    | 21 |  * (at your option) any later version.
 | 
  
    | 22 |  *
 | 
  
    | 23 |  * Website Baker is distributed in the hope that it will be useful,
 | 
  
    | 24 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
  
    | 25 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
  
    | 26 |  * GNU General Public License for more details.
 | 
  
    | 27 | */
 | 
  
    | 28 | /*
 | 
  
    | 29 |  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 | 
  
    | 30 |  *
 | 
  
    | 31 |  * This program is free software: you can redistribute it and/or modify
 | 
  
    | 32 |  * it under the terms of the GNU General Public License as published by
 | 
  
    | 33 |  * the Free Software Foundation, either version 3 of the License, or
 | 
  
    | 34 |  * (at your option) any later version.
 | 
  
    | 35 |  *
 | 
  
    | 36 |  * This program is distributed in the hope that it will be useful,
 | 
  
    | 37 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
  
    | 38 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
  
    | 39 |  * GNU General Public License for more details.
 | 
  
    | 40 |  *
 | 
  
    | 41 |  * You should have received a copy of the GNU General Public License
 | 
  
    | 42 |  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
  
    | 43 |  */
 | 
  
    | 44 | /**
 | 
  
    | 45 |  * [$filename]
 | 
  
    | 46 |  *
 | 
  
    | 47 |  * @category     Addons
 | 
  
    | 48 |  * @package      theme
 | 
  
    | 49 |  * @subpackage   DefaultTheme
 | 
  
    | 50 |  * @copyright    WebsiteBaker Project <board@websitebaker@org>
 | 
  
    | 51 |  * @author       WebsiteBaker Project <board@i@websitebaker@org>
 | 
  
    | 52 |  * @author       Dietmar Wöllbrink <dietmar.woellbrink@websitebaker@org>
 | 
  
    | 53 |  * @license      http://www.gnu.org/licenses/gpl.html   GPL License
 | 
  
    | 54 |  * @version      1.0.0
 | 
  
    | 55 |  * @lastmodified $Date: 2017-07-02 17:14:29 +0200 (Sun, 02 Jul 2017) $
 | 
  
    | 56 |  * @since        File available since 2016-07-26
 | 
  
    | 57 |  * @description
 | 
  
    | 58 |  */
 | 
  
    | 59 | 
 | 
  
    | 60 | $template_directory     = 'DefaultTheme';
 | 
  
    | 61 | $template_name          = 'WebsiteBaker Default Theme v1.2.20';
 | 
  
    | 62 | $template_version       = '1.2.20';
 | 
  
    | 63 | $template_platform      = '2.10.0';
 | 
  
    | 64 | $template_function      = 'theme';
 | 
  
    | 65 | $template_author        = 'Johannes Tassilo Gruber, WebsiteBaker Project';
 | 
  
    | 66 | $template_license       = '<a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>';
 | 
  
    | 67 | $template_description   = 'Default backend theme for Website Baker 2.10.0';
 | 
  
    | 68 | 
 | 
  
    | 69 | // end of file
 |