function faq_views_api in Frequently Asked Questions 7.2
Same name and namespace in other branches
- 6 faq.module \faq_views_api()
- 7 faq.module \faq_views_api()
Implements hook_views_api().
File
- ./
faq.module, line 410 - 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' => 3,
'path' => drupal_get_path('module', 'faq') . '/views',
);
}