12345678910111213141516171819 |
- <?php
- /**
- * @file
- * Declare the view API in use.
- */
- /**
- * Implementation of hook_views_api().
- */
- function footnotes_views_views_api() {
- $view = array(
- 'api' => 2,
- //'path' => drupal_get_path('module', 'footnotes_views'), -- this is the default
- );
- return $view;
- }
- // vim: ts=2 sw=2 et syntax=php
|