function _calendar_systems_variables_set in Calendar Systems 7
Same name and namespace in other branches
- 8 calendar_systems.install \_calendar_systems_variables_set()
- 7.2 calendar_systems.install \_calendar_systems_variables_set()
Parameters
$variables:
1 call to _calendar_systems_variables_set()
- calendar_systems_install in ./
calendar_systems.install - Implements hook_install().
File
- ./
calendar_systems.install, line 107 - Contains Calendar Systems installation hooks.
Code
function _calendar_systems_variables_set($variables) {
foreach ($variables as $key => $val) {
variable_set($key, $val);
}
}