function shoutbox_views_api in Shoutbox 7.2
Same name and namespace in other branches
- 7 shoutbox.module \shoutbox_views_api()
Implements hook_views_api().
File
- ./
shoutbox.module, line 1053 - Shoutbox module displays a block for users to create short messages for the whole site. Uses AHAH to update the database and display content.
Code
function shoutbox_views_api() {
return array(
'api' => '3.0',
'path' => drupal_get_path('module', 'shoutbox') . '/views',
);
}