mirror of
https://github.com/flarum/framework.git
synced 2024-11-28 20:16:08 +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();
|
||||
}
|
||||
|
||||
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];
|
||||
|
||||
$path = implode('', array_map(function ($part) use ($parameters) {
|
||||
if (is_array($part)) {
|
||||
$part = $parameters[$part[0]];
|
||||
}
|
||||
return $part;
|
||||
}, $parts));
|
||||
array_walk($parts, [$this, 'fixPathPart'], $parameters);
|
||||
$path = implode('', $parts);
|
||||
|
||||
$path = '/' . ltrim($path, '/');
|
||||
return $path;
|
||||
|
|
Loading…
Reference in New Issue
Block a user