You are here

function footnotes_views_views_handlers in Footnotes 6.2

Same name and namespace in other branches
  1. 7.3 footnotes_views.views.inc \footnotes_views_views_handlers()
  2. 7.2 footnotes_views.views.inc \footnotes_views_views_handlers()

Implementation of hook_views_handlers().

File

./footnotes_views.views.inc, line 11
To do views declarations.

Code

function footnotes_views_views_handlers() {
  return array(
    'handlers' => array(
      'footnotes_views_handler_field' => array(
        'parent' => 'views_handler_field_markup',
      ),
      'footnotes_views_handler_field_body_content' => array(
        'parent' => 'footnotes_views_handler_field',
      ),
      'footnotes_views_handler_field_body_footnotes' => array(
        'parent' => 'footnotes_views_handler_field',
      ),
    ),
  );
}