You are here

function signup_views_api in Signup 6.2

Same name and namespace in other branches
  1. 6 signup.module \signup_views_api()
  2. 7 signup.module \signup_views_api()

Implementation of hook_views_api().

File

./signup.module, line 1500
The Signup module (http://drupal.org/project/signup) manages replies to nodes. In particular, it's good for event management. Signup supports sending reminder emails and automatically closing signups for nodes with a start time, via the Event…

Code

function signup_views_api() {
  return array(
    'api' => 2.0,
    'path' => drupal_get_path('module', 'signup') . '/views',
  );
}