![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/knplabs/knp-menu/src/Knp/Menu/ |
<?php namespace Knp\Menu; use Knp\Menu\Factory\CoreExtension; use Knp\Menu\Factory\ExtensionInterface; /** * Factory to create a menu from a tree */ class MenuFactory implements FactoryInterface { /** * @var array<int, list<ExtensionInterface>> */ private array $extensions = []; /** * @var ExtensionInterface[]|null */ private ?array $sorted = null; public function __construct() { $this->addExtension(new CoreExtension(), -10); } public function createItem(string $name, array $options = []): ItemInterface { foreach ($this->getExtensions() as $extension) { $options = $extension->buildOptions($options); } $item = new MenuItem($name, $this); foreach ($this->getExtensions() as $extension) { $extension->buildItem($item, $options); } return $item; } /** * Adds a factory extension */ public function addExtension(ExtensionInterface $extension, int $priority = 0): void { $this->extensions[$priority][] = $extension; $this->sorted = null; } /** * Sorts the internal list of extensions by priority. * * @return ExtensionInterface[] */ private function getExtensions(): array { if (null === $this->sorted) { \krsort($this->extensions); $this->sorted = !empty($this->extensions) ? \array_merge(...$this->extensions) : []; } return $this->sorted; } }