You are here

public function ContentTypeMeeting::shouldShowNext in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Plugin/OpignoGroupManagerContentType/ContentTypeMeeting.php \Drupal\opigno_moxtra\Plugin\OpignoGroupManagerContentType\ContentTypeMeeting::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/ContentTypeMeeting.php, line 31

Class

ContentTypeMeeting
Class ContentTypeMeeting.

Namespace

Drupal\opigno_moxtra\Plugin\OpignoGroupManagerContentType

Code

public function shouldShowNext() {
  return FALSE;
}