duanbianweng5353 2018-09-22 06:19
浏览 163

在Drupal8自定义块中使用自定义树枝模板

I'm very new to Drupal and started learning with Drupal8 can anyone please provide me an example of Using custom twig template in Drupal8 custom block.

  • 写回答

1条回答 默认 最新

  • dongque3797 2018-09-22 14:04
    关注

    Follow the next steps:

    Create your custom .module file if you don't have one and add hook_theme() with defined variables names, and Twig template name.

    /**
     * Implements hook_theme().
     */
    function custom_theme() {
      return array(
       'custom_block' => array(
                'variables' => array('title' => NULL, 'description' => NULL),
                'template' => 'block--ws-custom',
            ),
      );
    }
    

    Next step is to create a block file and place the code. Go to your custom module folder, open /src/Plugin/Block/ and create file e.g. Custom.php. Include some core functions and build your custom block. Define id for your block and admin label, so you can easily find it in Structure -> Block layout and place to a region.

    Create a class and extend BlockBase. Use build() function and return an array of variables:

    namespace Drupal\custom\Plugin\Block;
    use Drupal\Core\Block\BlockBase;
    
    /**
     * Provides a 'ws custom' block.
     *
     * @Block(
     *   id = "custom_block",
     *   admin_label = @Translation("Custom Block"),
     *
     * )
     */
    class Custom extends BlockBase {
      /**
       * {@inheritdoc}
       */
      public function build() {
      // do something
        return array(
          '#title' => 'Title',
          '#description' => 'Description'
        );
      }
    }
    

    Now clear cache and go to Structure -> Block layout. Find your block and place it in the region you want.

    Next step is to create Twig file and render variables. In your themes folder open the theme that you use e.g. wstheme and open folder templates/block. Now, create a file block--custom.html.twig.

    Render variables to Twig HTML:

    {#
    /**
     * @file
     * Profile custom block.
     */
    #}
     <div class="custom--block">
        <h1>{{ title }}</h1>
        <p>{{ description }}</p>
     </div>
    

    Good luck!

    评论

报告相同问题?

悬赏问题

  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?