protected function WebformSubmissionForm::hasPages in Webform 6.x
Same name and namespace in other branches
- 8.5 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 2103
Class
- WebformSubmissionForm
- Provides a webform to collect and edit submissions.
Namespace
Drupal\webformCode
protected function hasPages() {
return $this
->getWebform()
->getPages($this->operation);
}