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


PHP fs_controller::url方法代碼示例

本文整理匯總了PHP中fs_controller::url方法的典型用法代碼示例。如果您正苦於以下問題:PHP fs_controller::url方法的具體用法?PHP fs_controller::url怎麽用?PHP fs_controller::url使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在fs_controller的用法示例。


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

示例1: url

 public function url()
 {
     if (isset($_GET['folder']) and isset($_GET['id'])) {
         return 'index.php?page=' . __CLASS__ . '&folder=' . $_GET['folder'] . '&id=' . $_GET['id'];
     } else {
         return parent::url();
     }
 }
開發者ID:desalort,項目名稱:FSAutoventas,代碼行數:8,代碼來源:documentos_facturas.php

示例2: url

 public function url()
 {
     if ($this->cliente) {
         return parent::url() . '&cod=' . $this->cliente->codcliente;
     } else {
         parent::url();
     }
 }
開發者ID:pcrednet,項目名稱:facturacion_base,代碼行數:8,代碼來源:ventas_cliente_articulos.php

示例3: url

 public function url()
 {
     if ($this->servicio) {
         return parent::url() . '&id=' . $this->servicio->idservicio;
     } else {
         return parent::url();
     }
 }
開發者ID:pcrednet,項目名稱:servicios,代碼行數:8,代碼來源:imprimir_servicio_ticket.php

示例4: url

 public function url()
 {
     if (!isset($this->balance)) {
         return parent::url();
     } else {
         if ($this->balance) {
             return $this->balance->url();
         } else {
             return parent::url();
         }
     }
 }
開發者ID:BGCX067,項目名稱:facturascripts-svn-to-git,代碼行數:12,代碼來源:contabilidad_balance.php

示例5: url

 public function url()
 {
     if (!isset($this->marca)) {
         return parent::url();
     } else {
         if ($this->marca) {
             return $this->marca->url();
         } else {
             return $this->page->url();
         }
     }
 }
開發者ID:Apvilchez,項目名稱:servicios,代碼行數:12,代碼來源:ventas_marca.php

示例6: url

 public function url()
 {
     if (!isset($this->fabricante)) {
         return parent::url();
     } else {
         if ($this->fabricante) {
             return $this->fabricante->url();
         } else {
             return $this->page->url();
         }
     }
 }
開發者ID:arielopez,項目名稱:temporal,代碼行數:12,代碼來源:ventas_fabricante.php

示例7: url

 public function url()
 {
     if (!isset($this->modelo)) {
         return parent::url();
     } else {
         if ($this->modelo) {
             return $this->modelo->url();
         } else {
             return $this->page->url();
         }
     }
 }
開發者ID:Apvilchez,項目名稱:servicios,代碼行數:12,代碼來源:ventas_modelo.php

示例8: url

 public function url()
 {
     if (!isset($this->subcuenta)) {
         return parent::url();
     } else {
         if ($this->subcuenta) {
             return $this->subcuenta->url();
         } else {
             return $this->ppage->url();
         }
     }
 }
開發者ID:Juanicos,項目名稱:facturacion_base,代碼行數:12,代碼來源:contabilidad_subcuenta.php

示例9: url

 public function url()
 {
     switch (get_class_name($this->documento)) {
         case 'albaran_cliente':
             return 'index.php?page=' . __CLASS__ . '&albaran=TRUE&id=' . $this->documento->idalbaran;
             break;
         case 'factura_cliente':
             return 'index.php?page=' . __CLASS__ . '&factura=TRUE&id=' . $this->documento->idfactura;
             break;
         default:
             return parent::url();
             break;
     }
 }
開發者ID:pcrednet,項目名稱:facturacion_base,代碼行數:14,代碼來源:ventas_maquetar.php

示例10: url

 public function url()
 {
     if (!isset($this->proveedor)) {
         return parent::url();
     } else {
         if ($this->proveedor) {
             return $this->proveedor->url();
         } else {
             return $this->ppage->url();
         }
     }
 }
開發者ID:ramikat,項目名稱:ERPSISFS,代碼行數:12,代碼來源:compras_proveedor.php

示例11: url

 public function url($busqueda = FALSE)
 {
     if ($busqueda) {
         $codcliente = '';
         if ($this->cliente) {
             $codcliente = $this->cliente->codcliente;
         }
         $url = $this->url() . "&mostrar=" . $this->mostrar . "&query=" . $this->query . "&codserie=" . $this->codserie . "&codagente=" . $this->codagente . "&codcliente=" . $codcliente . "&desde=" . $this->desde . "&hasta=" . $this->hasta;
         return $url;
     } else {
         return parent::url();
     }
 }
開發者ID:pcrednet,項目名稱:presupuestos_y_pedidos,代碼行數:13,代碼來源:ventas_pedidos.php

示例12: url

 public function url()
 {
     $url = parent::url();
     if (isset($_REQUEST['doc']) and isset($_REQUEST['id'])) {
         $url .= '&doc=' . $_REQUEST['doc'] . '&id=' . $_REQUEST['id'];
     }
     return $url;
 }
開發者ID:ggarcia24,項目名稱:facturacion_base,代碼行數:8,代碼來源:compras_actualiza_arts.php

示例13: url

 public function url()
 {
     if (!isset($this->suser)) {
         return parent::url();
     } else {
         if ($this->suser) {
             return $this->suser->url();
         } else {
             return $this->page->url();
         }
     }
 }
開發者ID:vicenteserra,項目名稱:facturascripts_2015,代碼行數:12,代碼來源:admin_user.php

示例14: url

 public function url()
 {
     if (!isset($this->ejercicio)) {
         return parent::url();
     } else {
         if ($this->ejercicio) {
             return $this->ejercicio->url();
         } else {
             return parent::url();
         }
     }
 }
開發者ID:vicenteserra,項目名稱:facturacion_base,代碼行數:12,代碼來源:contabilidad_ejercicio.php

示例15: url

 public function url()
 {
     if ($this->forma_pago) {
         return 'index.php?page=' . __CLASS__ . '&cod=' . $this->forma_pago->codpago;
     } else {
         return parent::url();
     }
 }
開發者ID:desalort,項目名稱:FSAutoventas,代碼行數:8,代碼來源:contabilidad_plazos_pago.php


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