function imagecrop_uninstall in Image javascript crop 6
Same name and namespace in other branches
- 5 imagecrop.install \imagecrop_uninstall()
- 7 imagecrop.install \imagecrop_uninstall()
Implementation of hook_uninstall().
File
- ./
imagecrop.install, line 131 - Install file.
Code
function imagecrop_uninstall() {
drupal_uninstall_schema('imagecrop');
db_query("DELETE FROM {system} where name = 'imagecrop'");
variable_del('imagecrop_modules');
variable_del('imagecrop_fields');
}