function signup_action_info in Signup 7
Same name and namespace in other branches
- 6.2 signup.module \signup_action_info()
- 6 signup.module \signup_action_info()
Implements hook_action_info().
File
- ./
signup.module, line 954 - 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_action_info() {
return array(
'signup_cancel_action' => array(
'type' => 'signup',
'label' => t('Cancel signup'),
'configurable' => FALSE,
),
'signup_mark_attended_action' => array(
'type' => 'signup',
'label' => t('Mark signup attended'),
'configurable' => FALSE,
),
'signup_mark_not_attended_action' => array(
'type' => 'signup',
'label' => t('Mark signup did not attend'),
'configurable' => FALSE,
),
);
}