You are here

public function Storage::changed in Express 8

Notifies the object that data has changed.

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

... See full list

File

themes/contrib/bootstrap/src/Utility/Storage.php, line 102
Contains \Drupal\bootstrap\Utility\Storage.

Class

Storage
Theme Storage.

Namespace

Drupal\bootstrap\Utility

Code

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