1
|
<?php
|
2
|
|
3
|
// $Id: info.php 1203 2009-11-30 13:45:26Z Luisehahne $
|
4
|
|
5
|
/*
|
6
|
* @version 1.0
|
7
|
* @author Ruud Eisinga (Ruud) John (PCWacht)
|
8
|
* @date June 2009
|
9
|
*
|
10
|
* droplets are small codeblocks that are called from anywhere in the template.
|
11
|
* To call a droplet just use [[dropletname]]. optional parameters for a droplet can be used like [[dropletname?parameter=value¶meter2=value]]
|
12
|
*/
|
13
|
|
14
|
$module_directory = 'droplets';
|
15
|
$module_name = 'Droplets';
|
16
|
$module_function = 'tool';
|
17
|
$module_version = '1.0.2';
|
18
|
$module_platform = '2.8.x';
|
19
|
$module_author = 'Ruud and pcwacht';
|
20
|
$module_license = 'GNU General Public License';
|
21
|
$module_description = 'This tool allows you to manage your local Droplets.';
|
22
|
|
23
|
$module_home = 'http://www.websitebakers.com/pages/droplets/about-droplets.php';
|
24
|
$module_guid = '9F2AC2DF-C3E1-4E15-BA4C-2A86E37FE6E5';
|
25
|
?>
|