Herzlich willkommen, '.$role.".

\n"); output("

Auf der linken Seite sehen Sie ein Auswahlmenü mit den Funktionen, die Ihnen in diesem Webinterface zur Verfügung stehen.

Nachfolgend sehen Sie eine Auswahl typischer Aufgaben.

\n"); $modules = get_modules_info(); $my_shortcuts = array(); foreach ($modules as $modname => $info) { if (file_exists('modules/'.$modname.'/shortcuts.php')) { $shortcuts = array(); include('modules/'.$modname.'/shortcuts.php'); foreach ($shortcuts as $shortcut) { $shortcut['module'] = $modname; $my_shortcuts[$shortcut['weight']] = $shortcut; } } } krsort($my_shortcuts); DEBUG($my_shortcuts); output("
"); foreach ($my_shortcuts as $shortcut) { $icon = "images/default.png"; if (file_exists("images/".$shortcut['icon'])) { $icon = "images/".$shortcut['icon']; } $alert = ''; if (isset($shortcut['alert']) && $shortcut['alert']) { $alert = '
('.$shortcut['alert'].')'; } output("
".internal_link($prefix.'go/'.$shortcut['module'].'/'.$shortcut['file'], "\"\" {$shortcut['title']} {$alert}")."
"); } output('
'); if (have_module('email') && $_SESSION['role'] & ROLE_VMAIL_ACCOUNT) { include('modules/email/vmailoverview.php'); output("
".$content."
"); } ?>