You are here

class footnotes_views_handler_field in Footnotes 6.2

Same name and namespace in other branches
  1. 7.3 footnotes_views_handler_field.inc \footnotes_views_handler_field
  2. 7.2 footnotes_views_handler_field.inc \footnotes_views_handler_field

@file Views handler field.

Hierarchy

Expanded class hierarchy of footnotes_views_handler_field

1 string reference to 'footnotes_views_handler_field'
footnotes_views_views_handlers in ./footnotes_views.views.inc
Implementation of hook_views_handlers().

File

./footnotes_views_handler_field.inc, line 8
Views handler field.

View source
class footnotes_views_handler_field extends views_handler_field_markup {
  function init(&$view, $options) {
    parent::init($view, $options);
  }
  function render_link($data, $values) {
    return $data;
  }

}

Members