You are here

public function entity_views_handler_field_text::render_single_value in Entity API 7

Render a single field value.

File

views/handlers/entity_views_handler_field_text.inc, line 96
Contains the entity_views_handler_field_text class.

Class

entity_views_handler_field_text
A handler to display text data.

Code

public function render_single_value($value, $values) {

  // Sanitization is handled by the wrapper, see
  // EntityFieldHandlerHelper::get_value().
  return $value;
}