You are here

class LingotekRouteSubscriber in Lingotek Translation 3.4.x

Same name and namespace in other branches
  1. 8 src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  2. 8.2 src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  3. 4.0.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  4. 3.0.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  5. 3.1.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  6. 3.2.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  7. 3.3.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  8. 3.5.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  9. 3.6.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  10. 3.7.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber
  11. 3.8.x src/Routing/LingotekRouteSubscriber.php \Drupal\lingotek\Routing\LingotekRouteSubscriber

Subscriber to add lingotek controller and generate bulk administration routes for content entity translation.

Hierarchy

Expanded class hierarchy of LingotekRouteSubscriber

1 string reference to 'LingotekRouteSubscriber'
lingotek.services.yml in ./lingotek.services.yml
lingotek.services.yml
1 service uses LingotekRouteSubscriber
lingotek.content_translation_subscriber in ./lingotek.services.yml
Drupal\lingotek\Routing\LingotekRouteSubscriber

File

src/Routing/LingotekRouteSubscriber.php, line 15

Namespace

Drupal\lingotek\Routing
View source
class LingotekRouteSubscriber extends RouteSubscriberBase {

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

  /**
   * Constructs a RouteSubscriber object.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {

    // Use instead of ContentTranslationController.
    foreach ($collection as $route) {
      if ($route
        ->getDefault('_controller') == '\\Drupal\\content_translation\\Controller\\ContentTranslationController::overview') {
        $route
          ->setDefault('_controller', '\\Drupal\\lingotek\\Controller\\LingotekContentTranslationController::overview');
      }
      if ($route
        ->getDefault('_controller') == '\\Drupal\\config_translation\\Controller\\ConfigTranslationController::itemPage') {
        $route
          ->setDefault('_controller', '\\Drupal\\lingotek\\Controller\\LingotekConfigTranslationController::itemPage');
      }
    }
    $debug_enabled = \Drupal::state()
      ->get('lingotek.enable_debug_utilities', FALSE);
    foreach ($this->entityTypeManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      if ($entity_type
        ->isTranslatable() && \Drupal::config('lingotek.settings')
        ->get('translate.entity.' . $entity_type_id)) {
        if ($entity_type_id === 'paragraph') {
          $config = \Drupal::config('lingotek.settings');
          $enable_bulk_management = $config
            ->get('preference.contrib.paragraphs.enable_bulk_management', FALSE);
          if (!$enable_bulk_management) {
            continue;
          }
        }
        if ($entity_type_id === 'cohesion_layout') {
          continue;
        }

        // Add a route for bulk translation management.
        $path = "admin/lingotek/manage/{$entity_type_id}";
        $options = [
          '_admin_route' => TRUE,
        ];
        $defaults = [
          'entity_type_id' => $entity_type_id,
        ];
        $route = new Route($path, [
          '_form' => 'Drupal\\lingotek\\Form\\LingotekManagementForm',
          '_title' => 'Manage Translations',
        ] + $defaults, [
          '_permission' => 'manage lingotek translations',
        ], $options);
        $collection
          ->add("lingotek.manage.{$entity_type_id}", $route);

        // Add a route for view metadata.
        if ($debug_enabled) {
          $path = ($entity_type
            ->hasLinkTemplate('canonical') ? $entity_type
            ->getLinkTemplate('canonical') : $entity_type
            ->getLinkTemplate('edit_form')) . '/metadata';
          $defaults = [
            'entity_type_id' => $entity_type_id,
          ];
          $options = [
            'parameters' => [
              $entity_type_id => [
                'type' => 'entity:' . $entity_type_id,
              ],
            ],
          ];
          if ($entity_type_id === 'node') {

            // Using _node_operation_route would be more elegant, but this
            // subscriber runs after NodeAdminRouteSubscriber already run.
            $options['_admin_route'] = \Drupal::config('node.settings')
              ->get('use_admin_theme');
          }
          $route = new Route($path, [
            '_form' => 'Drupal\\lingotek\\Form\\LingotekMetadataEditForm',
            '_title' => 'Edit translation metadata',
          ] + $defaults, [
            '_permission' => 'manage lingotek translations',
          ], $options);
          $collection
            ->add("lingotek.metadata.{$entity_type_id}", $route);
        }
      }
    }
  }

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    $events = parent::getSubscribedEvents();

    //  ContentTranslationRouteSubscriber is -100.
    $events[RoutingEvents::ALTER] = [
      'onAlterRoutes',
      -211,
    ];
    return $events;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LingotekRouteSubscriber::$entityTypeManager protected property The entity type manager
LingotekRouteSubscriber::alterRoutes protected function Alters existing routes for a specific collection. Overrides RouteSubscriberBase::alterRoutes
LingotekRouteSubscriber::getSubscribedEvents public static function Overrides RouteSubscriberBase::getSubscribedEvents
LingotekRouteSubscriber::__construct public function Constructs a RouteSubscriber object.
RouteSubscriberBase::onAlterRoutes public function Delegates the route altering to self::alterRoutes(). 1