You are here

function noderelationships_views_api in Node Relationships 6

Implementation of hook_views_api().

File

./noderelationships.module, line 88
This is the main script for the noderelationships module. It merely contains the implementation of hooks invoked by Drupal core, CCK, Views, etc. All common functions are externalized into several scripts that are included on demand.

Code

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