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