function quotes_views_api in Quotes 6
Same name and namespace in other branches
- 7 quotes.module \quotes_views_api()
Implementation of hook_views_api().
File
- ./
quotes.module, line 1879 - 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'),
);
}