You are here

public function ItemList::onChange in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/TypedData/Plugin/DataType/ItemList.php \Drupal\Core\TypedData\Plugin\DataType\ItemList::onChange()

React to changes to a child property or item.

Note that this is invoked after any changes have been applied.

Parameters

$name: The name of the property or the delta of the list item which is changed.

Overrides TraversableTypedDataInterface::onChange

File

core/lib/Drupal/Core/TypedData/Plugin/DataType/ItemList.php, line 292
Contains \Drupal\Core\TypedData\Plugin\DataType\ItemList.

Class

ItemList
A generic list class.

Namespace

Drupal\Core\TypedData\Plugin\DataType

Code

public function onChange($delta) {

  // Notify the parent of changes.
  if (isset($this->parent)) {
    $this->parent
      ->onChange($this->name);
  }
}