function course_signup_admin in Course 6
Same name and namespace in other branches
- 7.2 modules/course_signup/course_signup.module \course_signup_admin()
- 7 modules/course_signup/course_signup.module \course_signup_admin()
Signup course admin form.
1 string reference to 'course_signup_admin'
- course_signup_menu in modules/
course_signup/ course_signup.module - Implements hook_menu().
File
- modules/
course_signup/ course_signup.module, line 6
Code
function course_signup_admin() {
$form = array();
$form['signup_intro']['#value'] = "Course uses Signup's built-in functionality to allow learners to register for courses and for administrators to manage attendance.";
$form['course_signup_bypass_checkout'] = array(
'#title' => 'Bypass registration and checkout for free courses.',
'#type' => 'checkbox',
'#default_value' => variable_get('course_signup_bypass_checkout', 1),
'#description' => "Turning this on will allow registered users to immediately begin free courses without going through any kind of course registration or checkout when Ubercart Signup is used.",
);
return system_settings_form($form);
}