class BlockPageDisplayVariantSubscriber
Selects the block page display variant.
Hierarchy
- class \Drupal\block\EventSubscriber\BlockPageDisplayVariantSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
Expanded class hierarchy of BlockPageDisplayVariantSubscriber
See also
\Drupal\block\Plugin\DisplayVariant\BlockPageVariant
1 string reference to 'BlockPageDisplayVariantSubscriber'
- block.services.yml in core/
modules/ block/ block.services.yml - core/modules/block/block.services.yml
1 service uses BlockPageDisplayVariantSubscriber
File
-
core/
modules/ block/ src/ EventSubscriber/ BlockPageDisplayVariantSubscriber.php, line 14
Namespace
Drupal\block\EventSubscriberView source
class BlockPageDisplayVariantSubscriber implements EventSubscriberInterface {
/**
* Selects the block page display variant.
*
* @param \Drupal\Core\Render\PageDisplayVariantSelectionEvent $event
* The event to process.
*/
public function onSelectPageDisplayVariant(PageDisplayVariantSelectionEvent $event) {
$event->setPluginId('block_page');
}
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() : array {
$events[RenderEvents::SELECT_PAGE_DISPLAY_VARIANT][] = [
'onSelectPageDisplayVariant',
];
return $events;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
BlockPageDisplayVariantSubscriber::getSubscribedEvents | public static | function | Returns an array of event names this subscriber wants to listen to. | Overrides EventSubscriberInterface::getSubscribedEvents |
BlockPageDisplayVariantSubscriber::onSelectPageDisplayVariant | public | function | Selects the block page display variant. |