Project

General

Profile

1 560 Ruebenwurz
<?php
2 1375 FrankH
/**
3
 *
4
 * @category        module
5
 * @package         Form
6
 * @author          WebsiteBaker Project
7 1898 Luisehahne
 * @copyright       2009-2013, WebsiteBaker Org. e.V.
8
 * @link            http://www.websitebaker.org/
9 1375 FrankH
 * @license         http://www.gnu.org/licenses/gpl.html
10 1655 Luisehahne
 * @platform        WebsiteBaker 2.8.3
11 1375 FrankH
 * @requirements    PHP 5.2.2 and higher
12
 * @version         $Id$
13 1898 Luisehahne
 * @filesource      $HeadURL$
14 1457 Luisehahne
 * @lastmodified    $Date$
15 1714 Luisehahne
 * @description
16 1375 FrankH
 */
17 560 Ruebenwurz
18 1538 Luisehahne
// Must include code to stop this file being access directly
19 1655 Luisehahne
if(!defined('WB_URL')) {
20
	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
21
	throw new IllegalFileException();
22 1538 Luisehahne
}
23
/* -------------------------------------------------------- */
24 560 Ruebenwurz
$module_directory = 'form';
25
$module_name = 'Form';
26
$module_function = 'page';
27 1890 Luisehahne
$module_version = '2.9.2';
28 1883 Luisehahne
$module_platform = '2.8.4';
29 1655 Luisehahne
$module_author = 'Ryan Djurovich & Rudolph Lartey - additions John Maats - PCWacht, dev-team';
30 560 Ruebenwurz
$module_license = 'GNU General Public License';
31
$module_description = 'This module allows you to create customised online forms, such as a feedback form. '.
32
'Thank-you to Rudolph Lartey who help enhance this module, providing code for extra field types, etc.';