Last active
October 20, 2021 00:08
-
-
Save jimconte/e3fa7dc394025d1d00b3536de8b3cf47 to your computer and use it in GitHub Desktop.
A custom Drupal Block for rendering a Taxonomy Term in a configurable view mode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Drupal\mymodule\Plugin\Block; | |
use Drupal\Core\Block\BlockBase; | |
use Drupal\Core\Form\FormStateInterface; | |
/** | |
* Provides a block for rendering Taxonomy Terms in a view mode | |
* | |
* @Block( | |
* id = "taxonomy_term_rendered_entity_block", | |
* admin_label = @Translation("Taxonomy Term Rendered Entity Block"), | |
* category = @Translation("Custom"), | |
* ) | |
*/ | |
class TaxonomyTermRenderedEntityBlock extends BlockBase { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function build() { | |
if ($term = \Drupal::routeMatch()->getParameter('taxonomy_term')) { | |
$config = $this->getConfiguration(); | |
$build = \Drupal::entityTypeManager()->getViewBuilder('taxonomy_term') | |
->view($term, $config['view_mode']); | |
return $build; | |
} | |
return [ | |
'#markup' => $this->t('Not a Taxonomy Term') | |
]; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function blockForm($form, FormStateInterface $form_state) { | |
$form = parent::blockForm($form, $form_state); | |
$config = $this->getConfiguration(); | |
$view_modes_opts = ['' => '- Select -']; | |
$view_modes = \Drupal::entityQuery('entity_view_mode') | |
->condition('targetEntityType', 'taxonomy_term') | |
->execute(); | |
foreach ($view_modes as $key => $value) { | |
$val = str_replace("taxonomy_term.", "", $key); | |
$view_modes_opts[$val] = $val; | |
} | |
$form['view_mode'] = [ | |
'#type' => 'select', | |
'#options' => $view_modes_opts, | |
'#required' => true, | |
'#title' => $this->t('View Mode'), | |
'#description' => $this->t('The view mode to render the Taxonomy Term'), | |
'#default_value' => $config['view_mode'] ?? '', | |
]; | |
return $form; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function blockSubmit($form, FormStateInterface $form_state) { | |
$this->configuration['view_mode'] = $form_state->getValue('view_mode'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment