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


PHP fs_controller::__construct方法代碼示例

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


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

示例1: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Backups', 'admin', FALSE, TRUE);
     if (strtolower(FS_DB_TYPE) == 'mysql') {
         $this->template = 'backup_mysql';
         //$this->buttons[] = new fs_button('b_backupms', 'Respaldar por Completo la BD', $this->url().'&tipo_backup=todo');
         //$this->buttons[] = new fs_button('be_backupms', 'Respaldar por Completo Solo la Estructura de la BD', $this->url().'&tipo_backup=estructura');
         if (isset($_GET['take_bk'])) {
             // Descargar Archivo del Backup
             $this->baja_backup($_GET['take_bk']);
         }
         $this->cerrado = false;
         $this->backup_mysql_ms();
     } else {
         if (isset($_GET['backup'])) {
             $this->backup_postgresql_tables();
         }
     }
 }
開發者ID:arielopez,項目名稱:temporal,代碼行數:19,代碼來源:backup.php

示例2: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Eneboo FIX', 'admin', TRUE, TRUE);
 }
開發者ID:BGCX067,項目名稱:facturascripts-svn-to-git,代碼行數:4,代碼來源:eneboo_fix.php

示例3: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Maquinas cliente', 'Utilidades', FALSE, FALSE, FALSE);
 }
開發者ID:TinonDKV,項目名稱:control_maquinas,代碼行數:4,代碼來源:listado_maquinas_cliente.php

示例4: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Caja General', 'contabilidad', FALSE, TRUE);
     /// cualquier cosa que pongas aquí se ejecutará DESPUÉS de process()
 }
開發者ID:jcanda,項目名稱:caja_general,代碼行數:5,代碼來源:caja_general.php

示例5: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, ucfirst(FS_ALBARANES) . ' de cliente', 'ventas', FALSE, TRUE, TRUE);
 }
開發者ID:vamoros,項目名稱:facturacion_base,代碼行數:4,代碼來源:ventas_albaranes.php

示例6: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, '9 - Nueva Venta', 'distribucion', FALSE, TRUE, FALSE);
 }
開發者ID:joenilson,項目名稱:distribucion,代碼行數:4,代碼來源:distribucion_venta.php

示例7: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Atributod de artículos', 'ventas', FALSE, FALSE);
 }
開發者ID:vicenteserra,項目名稱:facturacion_base,代碼行數:4,代碼來源:ventas_atributos.php

示例8: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Temas', 'informame');
 }
開發者ID:NeoRazorX,項目名稱:informame,代碼行數:4,代碼來源:inme_temas.php

示例9: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, 'Agrupar ' . FS_ALBARANES, 'ventas', FALSE, FALSE);
 }
開發者ID:BGCX067,項目名稱:facturascripts-svn-to-git,代碼行數:4,代碼來源:ventas_agrupar_albaranes.php

示例10: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, ucfirst(FS_PEDIDOS) . ' de compra', 'compras');
 }
開發者ID:arielopez,項目名稱:temporal,代碼行數:4,代碼來源:compras_pedidos.php

示例11: __construct

 public function __construct()
 {
     parent::__construct(__CLASS__, ucfirst(FS_PRESUPUESTO), 'ventas', FALSE, FALSE);
 }
開發者ID:desalort,項目名稱:FSAutoventas,代碼行數:4,代碼來源:ventas_presupuesto.php


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