function _calendar_systems_variables_del in Calendar Systems 8
Same name and namespace in other branches
- 7 calendar_systems.install \_calendar_systems_variables_del()
- 7.2 calendar_systems.install \_calendar_systems_variables_del()
Parameters
$variables:
1 call to _calendar_systems_variables_del()
- calendar_systems_uninstall in ./calendar_systems.install 
- Implements hook_uninstall().
File
- ./calendar_systems.install, line 116 
- Contains Calendar Systems installation hooks.
Code
function _calendar_systems_variables_del($variables) {
  $variables = array_keys($variables);
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}