You are here

public function WebformComputedBase::isContainer in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/WebformComputedBase.php \Drupal\webform\Plugin\WebformElement\WebformComputedBase::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 WebformElementBase::isContainer

File

src/Plugin/WebformElement/WebformComputedBase.php, line 83

Class

WebformComputedBase
Provides a base class for 'webform_computed' elements.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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