function variable_include in Variable 6
Same name and namespace in other branches
- 7.2 variable.module \variable_include()
- 7 variable.module \variable_include()
Include extended API
2 calls to variable_include()
- variable_group in ./
variable.module - Get variable group information
- variable_info in ./
variable.module - Get variable information
File
- ./
variable.module, line 326 - Variable API module
Code
function variable_include($name = 'variable') {
static $included;
if (!isset($included[$name])) {
module_load_include('inc', 'variable', $name);
}
}