You are here

public function WebformElementBase::hasWrapper in Webform 6.x

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

Checks if the element has a wrapper.

Parameters

array $element: An element.

Return value

bool TRUE if the element has a wrapper.

Overrides WebformElementInterface::hasWrapper

1 call to WebformElementBase::hasWrapper()
WebformElementBase::prepare in src/Plugin/WebformElementBase.php
Prepare an element to be rendered within a webform.

File

src/Plugin/WebformElementBase.php, line 481

Class

WebformElementBase
Provides a base class for a webform element.

Namespace

Drupal\webform\Plugin

Code

public function hasWrapper(array $element) {
  return $this
    ->hasProperty('wrapper_attributes');
}