| 1 | <?php
 | 
  
    | 2 | /**
 | 
  
    | 3 |  *
 | 
  
    | 4 |  * @category        module
 | 
  
    | 5 |  * @package         droplet
 | 
  
    | 6 |  * @author          Ruud Eisinga (Ruud) John (PCWacht)
 | 
  
    | 7 |  * @author          WebsiteBaker Project
 | 
  
    | 8 |  * @copyright       2004-2009, Ryan Djurovich
 | 
  
    | 9 |  * @copyright       2009-2010, Website Baker Org. e.V.
 | 
  
    | 10 |  * @link			http://www.websitebaker2.org/
 | 
  
    | 11 |  * @license         http://www.gnu.org/licenses/gpl.html
 | 
  
    | 12 |  * @platform        WebsiteBaker 2.8.x
 | 
  
    | 13 |  * @requirements    PHP 4.4.9 and higher
 | 
  
    | 14 |  * @version         $Id: uninstall.php 1296 2010-02-19 11:02:17Z Luisehahne $
 | 
  
    | 15 |  * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/modules/droplets/uninstall.php $
 | 
  
    | 16 |  * @lastmodified    $Date: 2010-02-19 12:02:17 +0100 (Fri, 19 Feb 2010) $
 | 
  
    | 17 |  *
 | 
  
    | 18 |  */
 | 
  
    | 19 | 
 | 
  
    | 20 | // prevent this file from being accessed directly
 | 
  
    | 21 | if(!defined('WB_PATH')) die(header('Location: ../index.php'));
 | 
  
    | 22 | 
 | 
  
    | 23 | $table = TABLE_PREFIX .'mod_droplets';
 | 
  
    | 24 | $database->query("DROP TABLE IF EXISTS `$table`");
 | 
  
    | 25 | 
 | 
  
    | 26 | ?>
 |