root/modules/branches/2.4/customappsreg/uninstall.php

Revision 5324, 251 bytes (checked in by p_lindheimer, 4 years ago)

add customappsreg (Custom Applications Registry) module

Line 
1 <?php
2
3 global $db;
4
5 echo "dropping table custom_destinations..";
6 sql("DROP TABLE IF EXISTS `custom_destinations`");
7 echo "done<br>\n";
8
9 echo "dropping table custom_extensions..";
10 sql("DROP TABLE IF EXISTS `custom_extensions`");
11 echo "done<br>\n";
12
13 ?>
Note: See TracBrowser for help on using the browser.