You are here

public function WebformElementBase::isComposite in Webform 8.5

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

Checks if the element is a composite element.

Return value

bool TRUE if the element is a composite element.

Overrides WebformElementInterface::isComposite

5 calls to WebformElementBase::isComposite()
PasswordConfirm::form in src/Plugin/WebformElement/PasswordConfirm.php
Gets the actual configuration webform array to be built.
WebformElementBase::defineDefaultProperties in src/Plugin/WebformElementBase.php
Define an element's default properties.
WebformElementBase::form in src/Plugin/WebformElementBase.php
Gets the actual configuration webform array to be built.
WebformElementBase::getElementSelectorInputValue in src/Plugin/WebformElementBase.php
Get an element's (sub)input selector value.
WebformElementBase::setConfigurationFormDefaultValue in src/Plugin/WebformElementBase.php
Set an element's configuration webform element default value.

File

src/Plugin/WebformElementBase.php, line 638

Class

WebformElementBase
Provides a base class for a webform element.

Namespace

Drupal\webform\Plugin

Code

public function isComposite() {
  return $this->pluginDefinition['composite'];
}