You are here

function quote_views_api in Quote 7

Implements hook_views_api().

File

./quote.module, line 211
The quote module provides a filter and appropriate links that allow users to quote nodes and other comments in their own comments.

Code

function quote_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'quote') . '/views',
  );
}