You are here

function views_system_views_api in Views System 7.4

Same name and namespace in other branches
  1. 6.3 views_system.module \views_system_views_api()
  2. 6.2 views_system.module \views_system_views_api()
  3. 7.3 views_system.module \views_system_views_api()

Implements hook_views_api().

File

./views_system.module, line 28
Extends the Views module and provides fields, filter criteria, and sort criteria for Modules/Themes/Theme engines.

Code

function views_system_views_api() {
  return array(
    'api' => '3.0',
    'path' => drupal_get_path('module', 'views_system') . '/views',
  );
}