mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
Update RouteCollection::getPath
This version work faster - old code create closure at every calling getPath
This commit is contained in:
parent
bd47653377
commit
f3bc7d1c23
|
@ -80,16 +80,19 @@ class RouteCollection
|
||||||
return $this->dataGenerator->getData();
|
return $this->dataGenerator->getData();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPath($name, $parameters = [])
|
protected function fixPathPart(&$part, $key, array $parameters)
|
||||||
|
{
|
||||||
|
if (is_array($part) && array_key_exists($part[0], $parameters)) {
|
||||||
|
$part = $parameters[$part[0]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPath($name, array $parameters = [])
|
||||||
{
|
{
|
||||||
$parts = $this->reverse[$name][0];
|
$parts = $this->reverse[$name][0];
|
||||||
|
|
||||||
$path = implode('', array_map(function ($part) use ($parameters) {
|
array_walk($parts, [$this, 'fixPathPart'], $parameters);
|
||||||
if (is_array($part)) {
|
$path = implode('', $parts);
|
||||||
$part = $parameters[$part[0]];
|
|
||||||
}
|
|
||||||
return $part;
|
|
||||||
}, $parts));
|
|
||||||
|
|
||||||
$path = '/' . ltrim($path, '/');
|
$path = '/' . ltrim($path, '/');
|
||||||
return $path;
|
return $path;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user