You are here

public function WebformTableRow::isContainer in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/WebformTableRow.php \Drupal\webform\Plugin\WebformElement\WebformTableRow::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/WebformTableRow.php, line 52

Class

WebformTableRow
Provides a 'webform_table_row' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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