1
|
<?php
|
2
|
/*
|
3
|
* @version 1.0
|
4
|
* @author Ruud Eisinga (Ruud) John (PCWacht)
|
5
|
* @date June 2009
|
6
|
*
|
7
|
* droplets are small codeblocks that are called from anywhere in the template.
|
8
|
* To call a droplet just use [[dropletname]]. optional parameters for a droplet can be used like [[dropletname?parameter=value¶meter2=value]]
|
9
|
*/
|
10
|
|
11
|
// prevent this file from being accessed directly
|
12
|
if(!defined('WB_PATH')) die(header('Location: ../index.php'));
|
13
|
|
14
|
$table = TABLE_PREFIX .'mod_droplets';
|
15
|
$database->query("DROP TABLE IF EXISTS `$table`");
|
16
|
|
17
|
?>
|