Lines Matching refs:menus
148 $menus = [];
155 $menus[] = $menu;
159 …usort($menus, static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel…
161 return $menus;
173 $menus = [];
176 …$menus[] = new Menu('<strong>' . I18N::translate('Family with spouse') . '</strong>', $family->url…
179 $menus[] = new Menu($spouse->fullName(), $spouse->url());
183 $menus[] = new Menu($child->fullName(), $child->url());
188 return $menus;
487 public function genealogyMenuContent(array $menus): string argument
489 …ay_map(static fn (Menu $menu): string => view('components/menu-item', ['menu' => $menu]), $menus));