Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        module
5
 * @package         droplet
6
 * @author          Ruud Eisinga (Ruud) John (PCWacht)
7
 * @author          WebsiteBaker Project
8
 * @copyright       2009-2013, Website Baker Org. e.V.
9
 * @link            http://www.websitebaker.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id: info.php 1916 2013-06-07 04:06:48Z Luisehahne $
14
 * @filesource      $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/modules/droplets/info.php $
15
 * @lastmodified    $Date: 2013-06-07 06:06:48 +0200 (Fri, 07 Jun 2013) $
16
 *
17
 */
18
/* -------------------------------------------------------- */
19
// Must include code to stop this file being accessed directly
20
if(!defined('WB_PATH')) {
21

    
22
	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
23
	throw new IllegalFileException();
24
}
25
/* -------------------------------------------------------- */
26

    
27
$module_directory = 'droplets';
28
$module_name = 'Droplets';
29
$module_function = 'tool';
30
$module_version = '1.3.0';
31
$module_platform = '2.8.x';
32
$module_author = 'Ruud and pcwacht';
33
$module_license = 'GNU General Public License';
34
$module_description = 'This tool allows you to manage your local Droplets.';
(9-9/16)