You are here

function signup_views_tables in Signup 5.2

Implementation of hook_views_tables().

See also

_signup_views_tables()

Related topics

File

./signup.module, line 2792
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_tables() {
  require_once drupal_get_path('module', 'signup') . '/views/views.inc';
  return _signup_views_tables();
}