course_object_manual.module in Course 7
Same filename and directory in other branches
Module file to expose a manual course object.
File
modules/course_object_manual/course_object_manual.moduleView source
<?php
/**
* @file
* Module file to expose a manual course object.
*/
/**
* Implements hook_course_handlers().
*/
function course_object_manual_course_handlers() {
return array(
'object' => array(
'manual' => array(
'name' => t('Manual step'),
'class' => 'CourseObjectManual',
'description' => t('A manual step to be used in a course workflow, only marked complete by administrators.'),
),
),
);
}
Functions
Name | Description |
---|---|
course_object_manual_course_handlers | Implements hook_course_handlers(). |