function faq_views_api in Frequently Asked Questions 6
Same name and namespace in other branches
- 7.2 faq.module \faq_views_api()
- 7 faq.module \faq_views_api()
Implements hook_views_api().
File
- ./
faq.module, line 344 - The FAQ module allows users to create a FAQ page, with questions and answers displayed in different styles, according to the settings.
Code
function faq_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'faq') . '/views',
);
}