function block_subtitle_block_presave in Block Subtitle 8
Implements hook_ENTITY_TYPE_presave().
File
- ./
block_subtitle.module, line 43 - Adding subtitle to blocks.
Code
function block_subtitle_block_presave(BlockInterface $entity) {
if (empty($entity
->getThirdPartySetting('block_subtitle', 'subtitle'))) {
$entity
->unsetThirdPartySetting('block_subtitle', 'subtitle');
}
}