You are here

function variable_format_text_format in Variable 7.2

Same name and namespace in other branches
  1. 7 variable.variable.inc \variable_format_text_format()

Format text_format.

1 string reference to 'variable_format_text_format'
variable_variable_type_info in ./variable.variable.inc
Implements hook_variable_type_info().

File

./variable.variable.inc, line 357
Variable module hook implementations

Code

function variable_format_text_format($variable, $options = array()) {
  return check_markup($variable['value']['value'], $variable['value']['format']);
}