$bid = 'myblock';
$block = \Drupal\block_content\Entity\BlockContent::load($bid);
$render = \Drupal::entityTypeManager()->getViewBuilder('block_content')->view($block);
$block_manager = \Drupal::service('plugin.manager.block');
<?php | |
/** | |
* @file | |
* Token integration for the file_entity module. | |
*/ | |
/** | |
* Implements hook_token_info(). | |
*/ |
<?php | |
class SimpleForm extends FormBase { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getFormId() { | |
return 'simple_form'; | |
} |