You are here

function footnotes_views_views_api in Footnotes 6.2

Same name and namespace in other branches
  1. 7.3 footnotes_views.module \footnotes_views_views_api()
  2. 7.2 footnotes_views.module \footnotes_views_views_api()

Implementation of hook_views_api().

File

./footnotes_views.module, line 11
Declare the view API in use.

Code

function footnotes_views_views_api() {
  $view = array(
    'api' => 2,
  );
  return $view;
}