You are here

function shoutbox_views_api in Shoutbox 7

Same name and namespace in other branches
  1. 7.2 shoutbox.module \shoutbox_views_api()

Implements hook_views_api().

File

./shoutbox.module, line 1064
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',
  );
}