rng-3.x-dev/src/Breadcrumb/GroupBreadcrumbBuilder.php

src/Breadcrumb/GroupBreadcrumbBuilder.php
<?php

namespace Drupal\rng\Breadcrumb;

use Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\rng\Entity\GroupInterface;
use Drupal\Core\Link;
use Drupal\Core\Breadcrumb\Breadcrumb;

/**
 * Provides a breadcrumb builder for groups.
 */
class GroupBreadcrumbBuilder implements BreadcrumbBuilderInterface {

  use StringTranslationTrait;

  /**
   * {@inheritdoc}
   */
  public function applies(RouteMatchInterface $route_match) {
    $group = $route_match->getParameter('registration_group');
    return $group instanceof GroupInterface;
  }

  /**
   * {@inheritdoc}
   */
  public function build(RouteMatchInterface $route_match) {
    $links = [Link::createFromRoute($this->t('Home'), '<front>')];
    /** @var \Drupal\rng\Entity\GroupInterface $group */
    $group = $route_match->getParameter('registration_group');

    if ($event = $group->getEvent()) {
      $links[] = new Link($event->label(), $event->toUrl());
    }

    $breadcrumb = new Breadcrumb();
    return $breadcrumb
      ->setLinks($links)
      ->addCacheContexts(['route.name']);
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc