You are here

function views_customfield_handler_field_markup::render in Views Custom Field 6

File

includes/views_customfield_handler_field_markup.inc, line 38
Contains the 'customfield' markup field handler.

Class

views_customfield_handler_field_markup
Field handler to display custom markup text.

Code

function render($values) {
  $value = $values->{$this->field_alias};
  return check_markup($value, $this->options['format'], FALSE);
}