You are here

function reviews_views_api in Reviews 7

Implements hook_views_api().

File

./reviews.module, line 16
This file defines all the necessary hooks and functions to create a system for enabling and authoring content reviews on a per content type basis.

Code

function reviews_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'reviews') . '/views',
  );
}