function entityform_views_api in Entityform 7
Same name and namespace in other branches
- 7.2 entityform.module \entityform_views_api()
Implements hook_views_api().
File
- ./
entityform.module, line 673 - Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface
Code
function entityform_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'entityform') . '/views',
);
}