You are here

function footnotes_views_handler_field_body_content::render in Footnotes 6.2

Same name and namespace in other branches
  1. 7.3 footnotes_views_handler_field_body_content.inc \footnotes_views_handler_field_body_content::render()
  2. 7.2 footnotes_views_handler_field_body_content.inc \footnotes_views_handler_field_body_content::render()

File

./footnotes_views_handler_field_body_content.inc, line 27
Views handler for the body content.

Class

footnotes_views_handler_field_body_content
@file Views handler for the body content.

Code

function render($values) {
  $body = parent::render($values);
  return $this
    ->render_link($this
    ->render_name($body, $values), $values);
}