当前位置: 首页>>代码示例>>PHP>>正文


PHP CommonModel::__construct方法代码示例

本文整理汇总了PHP中Common\Model\CommonModel::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP CommonModel::__construct方法的具体用法?PHP CommonModel::__construct怎么用?PHP CommonModel::__construct使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Common\Model\CommonModel的用法示例。


在下文中一共展示了CommonModel::__construct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($name = '', $tablePrefix = '', $connection = '')
 {
     parent::__construct($name = '', $tablePrefix = '', $connection = '');
     $this->AUTH_NODE_FLAGS = array(array('id' => '1', 'label' => __('common.Everybody')), array('id' => '2', 'label' => __('common.Self only')), array('id' => '3', 'label' => __('common.Self and directly subordinate')), array('id' => '4', 'label' => __('common.Self and all subordinate')), array('id' => '5', 'label' => __('common.Self department')), array('id' => '6', 'label' => __('common.Self department and it\'s subordinate department')), array('id' => '0', 'label' => '|---' . __('common.Confirm APP supported under this')), array('id' => '7', 'label' => __('common.Self Headed Only')), array('id' => '8', 'label' => __('common.Self and directly subordinate Headed')), array('id' => '9', 'label' => __('common.Self and all subordinate Headed')));
 }
开发者ID:DevlJs,项目名称:ones,代码行数:5,代码来源:AuthNodeService.class.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->main_model = model_alias_to_name($this->main_model_alias);
     $this->detail_model = model_alias_to_name($this->detail_model_alias);
 }
开发者ID:npk,项目名称:ones,代码行数:6,代码来源:CommonBillService.class.php

示例3: __construct

 public function __construct($name = '', $tablePrefix = '', $connection = '')
 {
     parent::__construct($name, $tablePrefix, $connection);
     $this->save_path = ENTRY_PATH . '/uploads';
 }
开发者ID:DevlJs,项目名称:ones,代码行数:5,代码来源:AttachmentService.class.php


注:本文中的Common\Model\CommonModel::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。