当前位置: 首页>>代码示例>>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;未经允许,请勿转载。