You are here

public function ExampleWebformHandler::updateElement in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_example_handler/src/Plugin/WebformHandler/ExampleWebformHandler.php \Drupal\webform_example_handler\Plugin\WebformHandler\ExampleWebformHandler::updateElement()

Acts on a element after it has been updated.

Parameters

string $key: The element's key.

array $element: The element's properties.

array $original_element: The original element's properties.

Overrides WebformHandlerBase::updateElement

File

modules/webform_example_handler/src/Plugin/WebformHandler/ExampleWebformHandler.php, line 250

Class

ExampleWebformHandler
Webform example handler.

Namespace

Drupal\webform_example_handler\Plugin\WebformHandler

Code

public function updateElement($key, array $element, array $original_element) {
  $this
    ->debug(__FUNCTION__);
}