如何在drupal 8中获取自定义块内容

时间:2014-07-14 08:20:52

标签: drupal-8

我创建了一个自定义块"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

由于

1 个答案:

答案 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;
  }
}