You are here

function variable_modules_enabled in Variable 7

Same name and namespace in other branches
  1. 7.2 variable.module \variable_modules_enabled()

Implements hook_modules_enabled().

File

./variable.module, line 496
Variable API module

Code

function variable_modules_enabled($modules) {
  variable_include();
  array_map('variable_module_enable', $modules);
  variable_cache_clear();
}