You are here

function content_views_api in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 content.module \content_views_api()

Implementation of hook_views_api().

File

./content.module, line 216
Allows administrators to associate custom fields to content types.

Code

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