function node_field_views_api in Node Field 7.2
Implements hook_views_api().
File
- ./
node_field.module, line 359 - This module provide ability to add extra fields to any single node.
Code
function node_field_views_api() {
$path = drupal_get_path('module', 'node_field');
return [
'api' => '3.0',
'path' => $path . '/views',
];
}