Eccube\Application\ApplicationTrait::path PHP Метод

path() публичный Метод

Generates a path from the given parameters.
public path ( string $route, mixed $parameters = [] ) : string
$route string The name of the route
$parameters mixed An array of parameters
Результат string The generated path
    public function path($route, $parameters = array())
    {
        return $this['url_generator']->generate($route, $parameters, UrlGeneratorInterface::ABSOLUTE_PATH);
    }