Home
Actions
Configuration
Web Console
Help
';
$ver_link = '/service/serviceMgr.php?vl=3';
$buf = parent::gen_top_menu($dropdown, $ver_link);
return $buf;
}
public static function footer()
{
$year = '2002-2024';
$buf = parent::gen_footer($year, '');
return $buf;
}
public static function left_menu()
{
$confCenter = ConfCenter::singleton();
$conftype = $confCenter->_confType;
if($conftype == "admin") {
$listeners = count($confCenter->_serv->_data['listeners']);
$tabs = array('Admin' => 'admin', "Listeners ($listeners)" => 'altop');
}
else {
$vhosts = count($confCenter->_info['VHS']);
$listeners = count($confCenter->_info['LNS']);
$templates = isset($confCenter->_serv->_data['tpTop']) ? count($confCenter->_serv->_data['tpTop']) : 0;
$tabs = array('Server' => 'serv', "Listeners ($listeners)" => 'sltop',
"Virtual Hosts ($vhosts)" => 'vhtop', "Virtual Host Templates ($templates)" => 'tptop');
}
return parent::gen_left_menu($tabs);
}
}