示例#1
1
 function installationMenu()
 {
     $menu = array();
     $menu[] = array('name' => 'Übersicht', 'href' => 'install.php');
     $menu[] = array('name' => 'Datenbank', 'href' => 'install.php?section=db');
     $menu[] = array('name' => 'Nachrichten', 'href' => 'install.php?section=messages');
     $menu[] = array('name' => 'Netzwerk', 'href' => 'install.php?section=network');
     $menu[] = array('name' => 'Beenden', 'href' => 'install.php?section=finish');
     $menu = Menus::checkIfSelected($menu);
     return $menu;
 }