You are here

function quotes_views_api in Quotes 7

Same name and namespace in other branches
  1. 6 quotes.module \quotes_views_api()

Implements hook_views_api().

File

./quotes.module, line 2469
The quotes module allows users to maintain a list of quotes that can be displayed in any number of administrator-defined quote blocks.

Code

function quotes_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'quotes'),
  );
}