function weather_es_uninstall in Weather_es 7
Same name and namespace in other branches
- 5 weather_es.install \weather_es_uninstall()
 - 6.3 weather_es.install \weather_es_uninstall()
 - 6 weather_es.install \weather_es_uninstall()
 - 6.2 weather_es.install \weather_es_uninstall()
 
File
- ./
weather_es.install, line 90  - Install de drupal schema for the weather_es module
 
Code
function weather_es_uninstall() {
  //drupal_uninstall_schema('weather_es');
  // Remove blocks provided by the module
  db_delete('block')
    ->condition('module', 'weather_es')
    ->execute();
  db_delete('block_node_type')
    ->condition('module', 'weather_es')
    ->execute();
  db_delete('block_role')
    ->condition('module', 'weather_es')
    ->execute();
}