function variable_format_text in Variable 7
Same name and namespace in other branches
- 6 variable.variable.inc \variable_format_text()
- 7.2 variable.variable.inc \variable_format_text()
Format text variable
1 string reference to 'variable_format_text'
- variable_variable_type_info in ./
variable.variable.inc - Implements hook_variable_type_info().
File
- ./
variable.variable.inc, line 239 - Variable module hook implementations
Code
function variable_format_text($variable, $options = array()) {
return isset($variable['value']) ? filter_xss_admin($variable['value']) : variable_format_empty($variable);
}