fields(array('weight' => '9999')) ->condition('name', 'hide_vtabs') ->execute(); } /** * Implements hook_uninstall(). */ function hide_vtabs_uninstall() { // Delete variables created by the module. db_delete('variable') ->condition('name', "hide_vtab_node_%", "LIKE") ->execute(); cache_clear_all('variables', 'cache_bootstrap'); }