You are here

public function ContentTypeBase::shouldShowFinish in Opigno group manager 8

Same name and namespace in other branches
  1. 3.x src/ContentTypeBase.php \Drupal\opigno_group_manager\ContentTypeBase::shouldShowFinish()

Answer if the current page should show the "finish" button.

By default, it returns the value from shouldShowNext().

Return value

bool TRUE if the page should show the "finish" button. FALSE otherwise.

File

src/ContentTypeBase.php, line 100

Class

ContentTypeBase
Class ContentTypeBase.

Namespace

Drupal\opigno_group_manager

Code

public function shouldShowFinish() {
  return $this
    ->shouldShowNext();
}