App\Source\Composite\Menu::getAllItems PHP Method

getAllItems() public method

public getAllItems ( )
    public function getAllItems()
    {
        $arItems = [];
        foreach ($this->menu as $item) {
            $arItems[$item->getId()] = $item;
            if ($item->length() > 0) {
                $arItems = $arItems + $item->getAllItems();
            }
        }
        return $arItems;
    }