You are here

function signup_views_arguments in Signup 5.2

Implementation of hook_views_arguments().

See also

_signup_views_arguments()

Related topics

File

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