You are here

views_related_content.module in Views Related Content 7

File

views_related_content.module
View source
<?php

/**
 * Implements hook_views_api().
 * Notifies the Views module that we're compatible with a particular API revision.
 */
function views_related_content_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'views_related_content') . '/views',
  );
}

Functions

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