root/modules/branches/2.7/recordings/uninstall.php

Revision 5983, 287 bytes (checked in by p_lindheimer, 5 years ago)

#2899 forgot to include uninstall.php script

Line 
1 <?php
2
3 // Delete them all even if they should not exist just in case
4 //
5 $recordings = recordings_list();
6 foreach ($recordings as $item) {
7     $fcc = new featurecode('recordings', 'edit-recording-'.$item['id']);
8     $fcc->delete();
9     unset($fcc);   
10 }
11
12 sql('DROP TABLE IF EXISTS recordings');
13
14 ?>
15
Note: See TracBrowser for help on using the browser.