function Block::postSave

Same name and namespace in other branches
  1. 9 core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::postSave()
  2. 10 core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::postSave()
  3. 11.x core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::postSave()

Overrides EntityBase::postSave

File

core/modules/block/src/Entity/Block.php, line 245

Class

Block
Defines a Block configuration entity class.

Namespace

Drupal\block\Entity

Code

public function postSave(EntityStorageInterface $storage, $update = TRUE) {
    parent::postSave($storage, $update);
    // Entity::postSave() calls Entity::invalidateTagsOnSave(), which only
    // handles the regular cases. The Block entity has one special case: a
    // newly created block may *also* appear on any page in the current theme,
    // so we must invalidate the associated block's cache tag (which includes
    // the theme cache tag).
    if (!$update) {
        Cache::invalidateTags($this->getCacheTagsToInvalidate());
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.