You are here

function views_related_content_views_api in Views Related Content 7

Implements hook_views_api(). Notifies the Views module that we're compatible with a particular API revision.

File

./views_related_content.module, line 7

Code

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