You are here

public function WebformWizardPage::isContainer in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/WebformWizardPage.php \Drupal\webform\Plugin\WebformElement\WebformWizardPage::isContainer()

Checks if the element is a container that can contain elements.

Parameters

array $element: An element.

Return value

bool TRUE if the element is a container that can contain elements.

Overrides ContainerBase::isContainer

File

src/Plugin/WebformElement/WebformWizardPage.php, line 64

Class

WebformWizardPage
Provides a 'webform_wizard_page' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function isContainer(array $element) {
  return TRUE;
}