You are here

function _signup_views_arguments in Signup 5.2

Private implementation of hook_views_arguments().

1 call to _signup_views_arguments()
signup_views_arguments in ./signup.module
Implementation of hook_views_arguments().

File

views/views.inc, line 239
Provides support for Views integration.

Code

function _signup_views_arguments() {
  $arguments['signup_uid'] = array(
    'name' => t('Signup: User: UID Signup for Node'),
    'handler' => 'views_handler_arg_signup_uid',
    'help' => t('Filter signups by signed up user.'),
    'option' => array(
      '#type' => 'select',
      '#options' => array(
        1 => t('Signed up'),
        0 => t('Not signed up'),
      ),
    ),
  );
  return $arguments;
}