You are here

RouteProcessor.php in Ubercart 8.4

File

uc_catalog/src/Access/RouteProcessor.php
View source
<?php

namespace Drupal\uc_catalog\Access;

use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Render\BubbleableMetadata;
use Drupal\Core\RouteProcessor\OutboundRouteProcessorInterface;
use Symfony\Component\Routing\Route;

/**
 * Processes the outbound path by resolving it to the catalog page.
 */
class RouteProcessor implements OutboundRouteProcessorInterface {

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * The entity type manager service.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * Constructs a RouteProcessor object.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config factory.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager service.
   */
  public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager) {
    $this->configFactory = $config_factory;
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public function processOutbound($route_name, Route $route, array &$parameters, BubbleableMetadata $bubbleable_metadata = NULL) {
    if ($route_name == 'entity.taxonomy_term.canonical' && !empty($parameters['taxonomy_term'])) {
      if ($vid = $this->configFactory
        ->get('uc_catalog.settings')
        ->get('vocabulary')) {
        if ($this->entityTypeManager
          ->getStorage('taxonomy_term')
          ->load($parameters['taxonomy_term'])
          ->bundle() == $vid) {
          $route
            ->setPath('/catalog/{taxonomy_term}');
        }
      }
    }
  }

}

Classes

Namesort descending Description
RouteProcessor Processes the outbound path by resolving it to the catalog page.