function flipping_book_uninstall in Flipping Book 7
Implements hook_uninstall().
File
- ./
flipping_book.install, line 61 - Install, update and uninstall functions for the flipping_book module.
Code
function flipping_book_uninstall() {
$dir = variable_get('flipping_book_schema', 'public') . '://flipping_book';
file_unmanaged_delete_recursive($dir);
variable_del('flipping_book_schema');
}