views_handler_field_variable_title.inc 300 B

123456789101112
  1. <?php
  2. /**
  3. * Field handler to translate a variable name into its readable form.
  4. */
  5. class views_handler_field_variable_title extends views_handler_field {
  6. function render($values) {
  7. $name = $this->get_value($values);
  8. $variable = variable_build($name);
  9. return $variable['title'];
  10. }
  11. }