标签: drupal drupal-8 drupal-blocks
我需要通过我的自定义模块覆盖drupal放置块。我在块内容的后插入中编写了以下代码。
function mycustom_module_entity_postinsert(EntityInterface $entity) { $id = $entity->id(); $entity_type = $entity->getEntityTypeId(); }
我将如何以编程方式放置到特定块 内容ID?