You are here

function course_signup_action_info in Course 7.2

Same name and namespace in other branches
  1. 7 modules/course_signup/course_signup.module \course_signup_action_info()

Implements hook_action_info().

File

modules/course_signup/course_signup.module, line 384

Code

function course_signup_action_info() {
  $actions = array();
  $actions['course_signup_mark_attended_action'] = array(
    'type' => 'course_enrollment',
    'label' => t('Mark user attended'),
    'configurable' => FALSE,
    'vbo_configurable' => FALSE,
  );
  $actions['course_signup_mark_not_attended_action'] = array(
    'type' => 'course_enrollment',
    'label' => t('Mark user not attended'),
    'configurable' => FALSE,
    'vbo_configurable' => FALSE,
  );
  return $actions;
}