You are here

public function StorageItem::changed in Express 8

Notifies the main Storage object that data has changed.

7 calls to StorageItem::changed()
StorageItem::delete in themes/contrib/bootstrap/src/Utility/StorageItem.php
Deletes an item from the key/value store.
StorageItem::deleteAll in themes/contrib/bootstrap/src/Utility/StorageItem.php
Deletes all items from the key/value store.
StorageItem::deleteMultiple in themes/contrib/bootstrap/src/Utility/StorageItem.php
Deletes multiple items from the key/value store.
StorageItem::rename in themes/contrib/bootstrap/src/Utility/StorageItem.php
Renames a key.
StorageItem::set in themes/contrib/bootstrap/src/Utility/StorageItem.php
Saves a value for a given key.

... See full list

File

themes/contrib/bootstrap/src/Utility/StorageItem.php, line 52
Contains \Drupal\bootstrap\Utility\StorageItem.

Class

StorageItem
Theme Storage Item.

Namespace

Drupal\bootstrap\Utility

Code

public function changed() {
  if ($this->initialized) {
    $this->storage
      ->changed();
  }
}