You are here

function form_placeholder_uninstall in Form Placeholder 7

Implements hook_uninstall().

File

./form_placeholder.install, line 20
Installation functions for Form Placeholder module.

Code

function form_placeholder_uninstall() {
  $variables = array(
    'include',
    'exclude',
    'required_indicator',
  );
  foreach ($variables as $value) {
    variable_del('form_placeholder_' . $value);
  }
}