Beispiel #1
0
    exit;
}
if (isset($_POST["delete-virtual-perform"])) {
    delete_virtual_perform();
    exit;
}
if (isset($_GET["ports-list"])) {
    main_switch_ports();
    exit;
}
if (isset($_GET["switch-ports-table"])) {
    main_switch();
    exit;
}
if (isset($_POST["ipaddr"])) {
    port_save();
    exit;
}
if (isset($_POST["Uninstall"])) {
    Uninstall();
    exit;
}
if (isset($_POST["VirtualSwitchEnabled"])) {
    VirtualSwitchEnabled();
    exit;
}
tabs();
function main_switch_status()
{
    $switch = $_GET["eth"];
    $tpl = new templates();
Beispiel #2
0
include_once(dirname(__FILE__).'/ressources/class.squid.inc');
include_once('ressources/class.system.network.inc');

$usersmenus=new usersMenus();
if(!$usersmenus->AsSquidAdministrator){
	$tpl=new templates();
	$alert=$tpl->_ENGINE_parse_body('{ERROR_NO_PRIVS}');
	echo "alert('$alert');";
	die();
}

if(isset($_GET["search"])){page_search();exit;}
if(isset($_GET["port-js"])){port_js();exit;}
if(isset($_GET["delete-port-js"])){delete_port_js();exit;}
if(isset($_GET["port-popup"])){port_popup();exit;}
if(isset($_POST["ipaddr"])){port_save();exit;}
if(isset($_POST["delete-port"])){port_delete();exit;}
page();


function port_js(){
	$page=CurrentPageName();
	header("content-type: application/x-javascript");
	$ID=intval($_GET["ID"]);
	$tpl=new templates();
	$q=new mysql_squid_builder();
	$title=$tpl->javascript_parse_text("{new_port}");
	
	if($ID>0){
		$ligne=@mysql_fetch_array($q->QUERY_SQL("SELECT ipaddr,port FROM proxy_ports WHERE ID=$ID"));
		$title="{$ligne["ipaddr"]}:{$ligne["port"]}";