You are here

function nodeformcols_uninstall in Node form columns 7

Implementation of hook_uninstall().

File

./nodeformcols.install, line 23
Install and update hooks

Code

function nodeformcols_uninstall() {
  $res = db_select('variable')
    ->fields('variable', array(
    'name',
  ))
    ->condition('name', 'nodeformscols_field_placements_%', 'LIKE')
    ->execute();
  foreach ($res as $v) {
    variable_del($v->name);
  }
}