コード例 #1
0
ファイル: postfwd2.php プロジェクト: BillTheBest/1.6.x
    exit;
}
if (isset($_GET["status"])) {
    echo status();
    exit;
}
if (isset($_GET["service-status"])) {
    echo status_service();
    exit;
}
if (isset($_GET["rules"])) {
    echo rules();
    exit;
}
if (isset($_GET["DeleteRuleMaster"])) {
    DeleteRuleMaster();
    exit;
}
if (isset($_GET["rules-list"])) {
    echo rules_list();
    exit;
}
if (isset($_GET["rule-form"])) {
    echo rule_form();
    exit;
}
if (isset($_GET["EnablePOSTFWD2"])) {
    EnablePOSTFWD2();
    exit;
}
if (isset($_GET["reconfigure"])) {
コード例 #2
0
ファイル: postfwd2.php プロジェクト: rsd/artica-1.5
	include_once('ressources/class.os.system.inc');
	include_once('ressources/class.maincf.multi.inc');
	
	
	if(!Isright()){
		$tpl=new templates();
		echo "alert('".$tpl->javascript_parse_text('{ERROR_NO_PRIVS}')."');";
		die();
	}
	
	if(isset($_GET["tabs"])){echo tabs();exit;}
	if(isset($_GET["status"])){echo status();exit;}
	if(isset($_GET["service-status"])){echo status_service();exit;}
	
	if(isset($_GET["rules"])){echo rules();exit;}
	if(isset($_GET["DeleteRuleMaster"])){DeleteRuleMaster();exit;}
	if(isset($_GET["rules-list"])){echo rules_list();exit;}
	if(isset($_GET["rule-form"])){echo rule_form();exit;}
	
	if(isset($_GET["EnablePOSTFWD2"])){EnablePOSTFWD2();exit;}
	if(isset($_GET["reconfigure"])){reconfigure();exit;}
	
	if(isset($_GET["postfwd2-action"])){echo postfwd2_action_form();exit;}
	if(isset($_GET["postfwd2-mod-action"])){echo postfwd2_action_edit();exit;}
	
	
	if(isset($_GET["postfwd2-item"])){echo postfwd2_item_form();exit;}
	if(isset($_GET["postfwd2-add-item"])){echo postfwd2_item_save();exit;}
	if(isset($_GET["postfwd2-delete-item"])){postfwd2_item_delete();exit;}
	if(isset($_GET["postfwd2-item-list"])){echo postfwd2_item_list();exit;}
	if(isset($_GET["item-form-selected"])){echo postfwd2_item_form_selected();exit;}