public function CourseObject::isSkippable in Course 7
Same name and namespace in other branches
- 7.2 includes/CourseObject.inc \CourseObject::isSkippable()
If this course object is required, can be it skipped?
Return value
bool
File
- includes/
CourseObject.inc, line 671
Class
- CourseObject
- Parent abstract base class of all course objects.
Code
public function isSkippable() {
return (bool) $this
->getOption('skippable');
}