Skip to content

Instantly share code, notes, and snippets.

View AJV009's full-sized avatar
🛠️
Learning and Building for Tomorrow ☺️

Alphons Jaimon AJV009

🛠️
Learning and Building for Tomorrow ☺️
View GitHub Profile
@AJV009
AJV009 / Blocks.md
Created February 25, 2021 07:44 — forked from bdlangton/Blocks.md
Drupal 8 programmatic solutions

Render custom blocks

$bid = 'myblock';
$block = \Drupal\block_content\Entity\BlockContent::load($bid);
$render = \Drupal::entityTypeManager()->getViewBuilder('block_content')->view($block);

Render plugin blocks

$block_manager = \Drupal::service('plugin.manager.block');