public function ContentTypeILT::shouldShowNext in Opigno Instructor-led Trainings 8
Same name and namespace in other branches
- 3.x src/Plugin/OpignoGroupManagerContentType/ContentTypeILT.php \Drupal\opigno_ilt\Plugin\OpignoGroupManagerContentType\ContentTypeILT::shouldShowNext()
Return TRUE if the page should show the "next" action button.
Even if the score does not permit the user to go next.
Returning TRUE will not automatically show the button. The button will show up only if this method returns TRUE and if there is a next step available and if the user is able to go to this next content.
Return value
bool Next.
Overrides ContentTypeInterface::shouldShowNext
File
- src/
Plugin/ OpignoGroupManagerContentType/ ContentTypeILT.php, line 31
Class
- ContentTypeILT
- Class ContentTypeILT.
Namespace
Drupal\opigno_ilt\Plugin\OpignoGroupManagerContentTypeCode
public function shouldShowNext() {
return FALSE;
}