footnotes_views_handler_field.inc 296 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @file
  4. * Views handler field.
  5. */
  6. class footnotes_views_handler_field extends views_handler_field_markup {
  7. function init(&$view, $options) {
  8. parent::init($view, $options);
  9. }
  10. function render_link($data, $values) {
  11. return $data;
  12. }
  13. }
  14. // vim: ts=2 sw=2 et syntax=php