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