BcRoute.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Routing/BcRoute.php
  2. 8.9.x core/lib/Drupal/Core/Routing/BcRoute.php
  3. 10 core/lib/Drupal/Core/Routing/BcRoute.php

Namespace

Drupal\Core\Routing

File

core/lib/Drupal/Core/Routing/BcRoute.php

View source
<?php

namespace Drupal\Core\Routing;

use Symfony\Component\Routing\Route;

/**
 * A backwards compatibility route.
 *
 * When a route is deprecated for another one, and backwards compatibility is
 * provided, then it's best practice to:
 * - not duplicate all route definition metadata, to instead have an "as empty
 *   as possible" route
 * - have an accompanying outbound route processor, that overwrites this empty
 *   route definition with the redirected route's definition.
 *
 * @see \Drupal\rest\RouteProcessor\RestResourceGetRouteProcessorBC
 */
class BcRoute extends Route {
    
    /**
     * {@inheritdoc}
     */
    public function __construct() {
        parent::__construct('');
        $this->setOption('bc_route', TRUE);
    }

}

Classes

Title Deprecated Summary
BcRoute A backwards compatibility route.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.