hook_views_api()Register View API information. This is required for your module to have its include files loaded; for example, when implementing hook_views_default_views().
An array with the following possible keys:
contributions/views/docs/docs.php, line 251
<?php
function hook_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'example') . '/includes/views',
);
}
?>