function block_id_block_presave in Block ID 2.0.x
Same name and namespace in other branches
- 8 block_id.module \block_id_block_presave()
Implements hook_ENTITY_TYPE_presave().
File
- ./
block_id.module, line 32 - Contains block_id.module.
Code
function block_id_block_presave(BlockInterface $entity) {
if (empty($entity
->getThirdPartySetting('block_id', 'id'))) {
$entity
->unsetThirdPartySetting('block_id', 'id');
}
}