Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. PrefixTrait.php

function PrefixTrait::addPrefix

2 calls to PrefixTrait::addPrefix()
XmlFileLoader::parseImport in vendor/symfony/routing/Loader/XmlFileLoader.php
Parses an import and adds the routes in the resource to the RouteCollection.
YamlFileLoader::parseImport in vendor/symfony/routing/Loader/YamlFileLoader.php
Parses an import and adds the routes in the resource to the RouteCollection.

File

vendor/symfony/routing/Loader/Configurator/Traits/PrefixTrait.php, line 24

Class

PrefixTrait
@internal

Namespace

Symfony\Component\Routing\Loader\Configurator\Traits

Code

protected final function addPrefix(RouteCollection $routes, string|array $prefix, bool $trailingSlashOnRoot) : void {
    if (\is_array($prefix)) {
        foreach ($prefix as $locale => $localePrefix) {
            $prefix[$locale] = trim(trim($localePrefix), '/');
        }
        foreach ($routes->all() as $name => $route) {
            if (null === ($locale = $route->getDefault('_locale'))) {
                $priority = $routes->getPriority($name) ?? 0;
                $routes->remove($name);
                foreach ($prefix as $locale => $localePrefix) {
                    $localizedRoute = clone $route;
                    $localizedRoute->setDefault('_locale', $locale);
                    $localizedRoute->setRequirement('_locale', preg_quote($locale));
                    $localizedRoute->setDefault('_canonical_route', $name);
                    $localizedRoute->setPath($localePrefix . (!$trailingSlashOnRoot && '/' === $route->getPath() ? '' : $route->getPath()));
                    $routes->add($name . '.' . $locale, $localizedRoute, $priority);
                }
            }
            elseif (!isset($prefix[$locale])) {
                throw new \InvalidArgumentException(\sprintf('Route "%s" with locale "%s" is missing a corresponding prefix in its parent collection.', $name, $locale));
            }
            else {
                $route->setPath($prefix[$locale] . (!$trailingSlashOnRoot && '/' === $route->getPath() ? '' : $route->getPath()));
                $routes->add($name, $route, $routes->getPriority($name) ?? 0);
            }
        }
        return;
    }
    $routes->addPrefix($prefix);
    if (!$trailingSlashOnRoot) {
        $rootPath = (new Route(trim(trim($prefix), '/') . '/'))->getPath();
        foreach ($routes->all() as $route) {
            if ($route->getPath() === $rootPath) {
                $route->setPath(rtrim($rootPath, '/'));
            }
        }
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal