當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CCMergeQueryStrings函數代碼示例

本文整理匯總了PHP中CCMergeQueryStrings函數的典型用法代碼示例。如果您正苦於以下問題:PHP CCMergeQueryStrings函數的具體用法?PHP CCMergeQueryStrings怎麽用?PHP CCMergeQueryStrings使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了CCMergeQueryStrings函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Operation

 function Operation()
 {
     if (!$this->Visible) {
         return;
     }
     global $Redirect;
     global $FileName;
     if (!$this->FormSubmitted) {
         return;
     }
     if ($this->FormSubmitted) {
         $this->PressedButton = "Button_DoSearch";
         if ($this->Button_DoSearch->Pressed) {
             $this->PressedButton = "Button_DoSearch";
         }
     }
     $Redirect = "lov_p_w_proc.php";
     if ($this->Validate()) {
         if ($this->PressedButton == "Button_DoSearch") {
             $Redirect = "lov_p_w_proc.php" . "?" . CCMergeQueryStrings(CCGetQueryString("Form", array("Button_DoSearch", "Button_DoSearch_x", "Button_DoSearch_y")));
             if (!CCGetEvent($this->Button_DoSearch->CCSEvents, "OnClick", $this->Button_DoSearch)) {
                 $Redirect = "";
             }
         }
     } else {
         $Redirect = "";
     }
 }
開發者ID:rayminami,項目名稱:mpd-online,代碼行數:28,代碼來源:lov_p_w_proc.php

示例2: Operation

 function Operation()
 {
     if (!$this->Visible) {
         return;
     }
     global $Redirect;
     global $FileName;
     if (!$this->FormSubmitted) {
         return;
     }
     if ($this->FormSubmitted) {
         $this->PressedButton = "Button_DoSearch";
         if ($this->Button_DoSearch->Pressed) {
             $this->PressedButton = "Button_DoSearch";
         } else {
             if ($this->button_submit->Pressed) {
                 $this->PressedButton = "button_submit";
             } else {
                 if ($this->Button1->Pressed) {
                     $this->PressedButton = "Button1";
                 }
             }
         }
     }
     $Redirect = "t_vat_setllement.php";
     if ($this->Validate()) {
         if ($this->PressedButton == "Button_DoSearch") {
             $Redirect = "t_vat_setllement.php" . "?" . CCMergeQueryStrings(CCGetQueryString("Form", array("Button_DoSearch", "Button_DoSearch_x", "Button_DoSearch_y", "button_submit", "button_submit_x", "button_submit_y", "Button1", "Button1_x", "Button1_y")));
             if (!CCGetEvent($this->Button_DoSearch->CCSEvents, "OnClick", $this->Button_DoSearch)) {
                 $Redirect = "";
             }
         } else {
             if ($this->PressedButton == "button_submit") {
                 if (!CCGetEvent($this->button_submit->CCSEvents, "OnClick", $this->button_submit)) {
                     $Redirect = "";
                 }
             } else {
                 if ($this->PressedButton == "Button1") {
                     if (!CCGetEvent($this->Button1->CCSEvents, "OnClick", $this->Button1)) {
                         $Redirect = "";
                     }
                 }
             }
         }
     } else {
         $Redirect = "";
     }
 }
開發者ID:rayminami,項目名稱:mpd-online,代碼行數:48,代碼來源:t_vat_setllement.php

示例3: Operation

 function Operation()
 {
     if (!$this->Visible) {
         return;
     }
     global $Redirect;
     global $FileName;
     if (!$this->FormSubmitted) {
         return;
     }
     if ($this->FormSubmitted) {
         $this->PressedButton = "Button_Search";
         if ($this->Button_Search->Pressed) {
             $this->PressedButton = "Button_Search";
         }
     }
     $Redirect = "products_suite.php" . "?" . CCGetQueryString("QueryString", array("ccsForm", "v_alm_product_suitesPage"));
     if ($this->Validate()) {
         if ($this->PressedButton == "Button_Search") {
             $Redirect = "products_suite.php" . "?" . CCMergeQueryStrings(CCGetQueryString("Form", array("Button_Search", "Button_Search_x", "Button_Search_y", "v_alm_product_suitesPage")), CCGetQueryString("QueryString", array("s_search", "lbmanufacturer", "ccsForm", "v_alm_product_suitesPage")));
             if (!CCGetEvent($this->Button_Search->CCSEvents, "OnClick", $this->Button_Search)) {
                 $Redirect = "";
             }
         }
     } else {
         $Redirect = "";
     }
 }
開發者ID:wangshipeng,項目名稱:license_manager,代碼行數:28,代碼來源:products_suite_list.php

示例4: Operation

 function Operation()
 {
     if (!$this->Visible) {
         return;
     }
     global $Redirect;
     global $FileName;
     $this->DataSource->Prepare();
     if (!$this->FormSubmitted) {
         $this->EditMode = true;
         return;
     }
     if ($this->FormSubmitted) {
         $this->PressedButton = "Button_DoSearch";
         if ($this->Button_DoSearch->Pressed) {
             $this->PressedButton = "Button_DoSearch";
         }
     }
     $Redirect = $FileName;
     if ($this->Validate()) {
         if ($this->PressedButton == "Button_DoSearch") {
             $Redirect = $FileName . "?" . CCMergeQueryStrings(CCGetQueryString("Form", array("Button_DoSearch", "Button_DoSearch_x", "Button_DoSearch_y")));
             if (!CCGetEvent($this->Button_DoSearch->CCSEvents, "OnClick", $this->Button_DoSearch)) {
                 $Redirect = "";
             }
         }
     } else {
         $Redirect = "";
     }
     if ($Redirect) {
         $this->DataSource->close();
     }
 }
開發者ID:rayminami,項目名稱:chumanis,代碼行數:33,代碼來源:lov_dynamic2.php


注:本文中的CCMergeQueryStrings函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。