You are here

footnotes_views_handler_field.inc in Footnotes 6.2

Views handler field.

File

footnotes_views_handler_field.inc
View source
<?php

/**
 * @file
 * Views handler field.
 */
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;
  }

}

// vim: ts=2 sw=2 et syntax=php

Classes

Namesort descending Description
footnotes_views_handler_field @file Views handler field.