我创建了一个自定义块"admin/structure/block/block-content
“。
如何通过代码从自定义块中获取字段?
我尝试使用block_load
函数和entity_load
但未获得预期结果。
请帮我解决一下。
$ block = \ Drupal :: entityManager() - > getStorage('block') - > load($ block_id);
$ block_view = \ Drupal :: entityManager() - > getViewBuilder('block') - > view($ block);
http://i.stack.imgur.com/fOuSW.png
由于
答案 0 :(得分:5)
您的解决方案几乎是正确的。 Drupal 8中的自定义块具有不同的实体名称。见下面的例子。
<?php
/**
* Implements hook_preprocess_html().
*/
function my_module_preprocess_html(&$variables) {
// You can do some logic like showing your custom block on certain pages or
// under certain conditions.
if (\Drupal::routeMatch()->getRouteName() == 'some.path') {
$block = \Drupal::entityManager()->getStorage('block_content')->load(1);
$block_view = \Drupal::entityManager()->getViewBuilder('block_content')->view($block);
$variables['page']['sidebar_first']['custom_block'] = $block_view;
}
}