You are here

footnotes_views.module in Footnotes 6.2

Same filename and directory in other branches
  1. 7.3 footnotes_views.module
  2. 7.2 footnotes_views.module

Declare the view API in use.

File

footnotes_views.module
View source
<?php

/**
 * @file
 * Declare the view API in use.
 */

/**
 * Implementation of hook_views_api().
 */
function footnotes_views_views_api() {
  $view = array(
    'api' => 2,
  );
  return $view;
}

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

Functions

Namesort descending Description
footnotes_views_views_api Implementation of hook_views_api().