public function CourseObject::isSkippable in Course 3.x
Same name and namespace in other branches
- 8.3 src/Entity/CourseObject.php \Drupal\course\Entity\CourseObject::isSkippable()
- 8.2 src/Entity/CourseObject.php \Drupal\course\Entity\CourseObject::isSkippable()
If this course object is required, can be it skipped?
Return value
bool
File
- src/
Entity/ CourseObject.php, line 627
Class
- CourseObject
- Parent abstract base class of all course objects.
Namespace
Drupal\course\EntityCode
public function isSkippable() {
return (bool) $this
->getReadOnlyOption('skippable');
}