1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category module
|
5
|
* @package droplet
|
6
|
* @author Ruud Eisinga (Ruud) John (PCWacht)
|
7
|
* @author WebsiteBaker Project
|
8
|
* @copyright Ryan Djurovich
|
9
|
* @copyright WebsiteBaker Org. e.V.
|
10
|
* @link http://websitebaker.org/
|
11
|
* @license http://www.gnu.org/licenses/gpl.html
|
12
|
* @platform WebsiteBaker 2.8.3
|
13
|
* @requirements PHP 5.3.6 and higher
|
14
|
* @version $Id: call_help.php 2 2017-07-02 15:14:29Z Manuela $
|
15
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb/2.10.x/trunk/modules/droplets/commands/call_help.php $
|
16
|
* @lastmodified $Date: 2017-07-02 17:14:29 +0200 (Sun, 02 Jul 2017) $
|
17
|
*
|
18
|
*/
|
19
|
/* -------------------------------------------------------- */
|
20
|
// Must include code to stop this file being accessed directly
|
21
|
if(defined('WB_PATH') == false) { die('Cannot access '.basename(__DIR__).'/'.basename(__FILE__).' directly'); }
|
22
|
/* -------------------------------------------------------- */
|
23
|
// Create new template object with phplib
|
24
|
$oTpl = new Template($sAddonThemePath, 'keep' );
|
25
|
$oTpl->set_file('page', 'call_help.htt');
|
26
|
$oTpl->set_block('page', 'main_block', 'main');
|
27
|
$oTpl->set_var($aLang);
|
28
|
$oTpl->set_var($aTplDefaults);
|
29
|
/*-- finalize the page -----------------------------------------------------------------*/
|
30
|
$oTpl->parse('main', 'main_block', false);
|
31
|
$oTpl->pparse('output', 'page');
|
32
|
|