You are here

function similarterms_views_api in Similar By Terms 6.2

Same name and namespace in other branches
  1. 7.2 similarterms.module \similarterms_views_api()

Implementation of hook_views_api. Notifies the Views module that we're compatible with a particular API revision.

File

./similarterms.module, line 7

Code

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