You are here

protected function WebformSubmissionForm::hasPages in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/WebformSubmissionForm.php \Drupal\webform\WebformSubmissionForm::hasPages()

Determine if this is a multi-step wizard form.

Return value

bool TRUE if this multi-step wizard form.

1 call to WebformSubmissionForm::hasPages()
WebformSubmissionForm::attachBehaviors in src/WebformSubmissionForm.php
Attach behaviors with libraries to the form.

File

src/WebformSubmissionForm.php, line 2186

Class

WebformSubmissionForm
Provides a webform to collect and edit submissions.

Namespace

Drupal\webform

Code

protected function hasPages() {
  return $this
    ->getWebform()
    ->getPages($this->operation);
}