footnotes_views.module 317 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Declare the view API in use.
  5. */
  6. /**
  7. * Implementation of hook_views_api().
  8. */
  9. function footnotes_views_views_api() {
  10. $view = array(
  11. 'api' => 2,
  12. //'path' => drupal_get_path('module', 'footnotes_views'), -- this is the default
  13. );
  14. return $view;
  15. }
  16. // vim: ts=2 sw=2 et syntax=php