function variable_build in Variable 7
Same name and namespace in other branches
- 7.2 variable.module \variable_build()
Build full variable data
10 calls to variable_build()
- variable_children in ./
variable.module - Get list of variables expanding multiple ones
- variable_delete in ./
variable.module - Delete variable (included children variables)
- variable_format_value in ./
variable.module - Format printable value
- variable_form_element in ./
variable.form.inc - Build form element for a variable
- variable_get_child in ./
variable.module - Get variable child element from multiple variable
File
- ./
variable.module, line 339 - Variable API module
Code
function variable_build($variable, $options = array()) {
variable_include();
$variable = _variable_variable($variable, $options);
return variable_build_variable($variable, $options);
}