function cck_select_other_views_api in CCK Select Other 7.2
Same name and namespace in other branches
- 6 cck_select_other.module \cck_select_other_views_api()
- 7 cck_select_other.module \cck_select_other_views_api()
Implementation of hook_views_api().
File
- ./
cck_select_other.module, line 362 - Implements a select list widget that lets a user provide an alternate option.
Code
function cck_select_other_views_api() {
return array(
'api' => '3',
'path' => drupal_get_path('module', 'cck_select_other') . '/views',
);
}