function views_views_api
3.x views.module | views_views_api() |
2.x handlers.inc | views_views_api() |
Implementation of hook_views_api().
This one is used as the base to reduce errors when updating.
1 call to views_views_api()
- handlers.inc in includes/
handlers.inc - handlers.inc Defines the various handler objects to help build and display views.
File
- includes/
handlers.inc, line 1414 - handlers.inc Defines the various handler objects to help build and display views.
Code
function views_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'views') . '/modules',
);
}