You are here

similarterms.module in Similar By Terms 6.2

File

similarterms.module
View source
<?php

/**
 * Implementation of hook_views_api.
 * Notifies the Views module that we're compatible with a particular API revision.
 */
function similarterms_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'similarterms') . '/views',
  );
}

Functions

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