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


PHP CModel::make方法代码示例

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


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

示例1: login

 /**
  * 管理员登录
  */
 protected function login()
 {
     $username = $this->input->post('username', true);
     $password = $this->input->post('password', true);
     $this->_user->username = trim($username);
     $this->_user->password = $password;
     $modLogin = CModel::make('admin/loginman_model', 'loginman_model');
     $boolean = $modLogin->authenticate($this->_user);
     return $boolean === true && $modLogin->save();
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:13,代码来源:loginman.php

示例2: _authentication

 /**
  * 用户身份验证
  */
 public function _authentication()
 {
     if ($this->_user->isGuest) {
         $modelLogin = CModel::make('login_model');
         $return = $modelLogin->authLogin($this->_user);
         //申请授权并登录
         if ($return !== true) {
             CAjax::result($return);
             exit(0);
         }
     }
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:15,代码来源:Register.php

示例3: matchOrigin

 static function matchOrigin($value)
 {
     static $rows = array();
     if (!$rows) {
         $modelGoods = CModel::make('goods_model');
         $rows = $modelGoods->getOrigin();
     }
     if ($rows) {
         foreach ($rows as $row) {
             if ($row['value'] == $value) {
                 return $row['name'];
             }
         }
     }
     return '';
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:16,代码来源:Matcher.php

示例4: append

 /**
  * 新增故事
  */
 public function append($openId, $data)
 {
     $return = false;
     $modelReg = CModel::make('register_model');
     $regRow = $modelReg->getRowByWId($openId);
     if ($regRow) {
         $content = $data['content'];
         $now = time();
         $value = array('register_id' => $regRow->id, 'wxid' => $openId, 'digest' => mb_substr($content, 32), 'create_time' => $now, 'update_time' => $now);
         $return = $this->db->insert('mhr_story', $value);
         if ($return == true) {
             $value = array('story_id' => $this->db->insert_id(), 'content' => $content, 'update_time' => $now);
             $return = $this->db->insert('mhr_story_content', $value);
         }
     }
     return $return;
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:20,代码来源:Story_model.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_modelSys = CModel::make('admin/sysman_model', 'sysman_model');
     $this->_route = $this->input->get('r', true);
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:6,代码来源:sysman.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_modelOrder = CModel::make('admin/orderman_model', 'orderMan_model');
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:5,代码来源:orderman.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_modelRegister = CModel::make('admin/registerman_model', 'registerman_model');
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:5,代码来源:registerman.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_modelstory = CModel::make('admin/storyman_model', 'storyman_model');
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:5,代码来源:storyman.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_modelPay = CModel::make('admin/payman_model', 'payMan_model');
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:5,代码来源:payman.php

示例10: setPassword

 /**
  * 设置管理员密码
  */
 public function setPassword($id, $password)
 {
     if (strlen($password) <= 0) {
         return false;
     }
     $id = (int) $id;
     $sql = "select id from mic_user where isdel=0 and id=?";
     $query = $this->db->query($sql, array($id));
     if (!$query->row()) {
         return false;
     }
     $model = CModel::make('login_model');
     $password = $model->hashPassword($password);
     $sql = "update mic_user set password=? where isdel=0 and id={$id}";
     $return = $this->db->query($sql, array($password));
     return $return;
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:20,代码来源:userman_model.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     $this->_modelItem = CModel::make('admin/itemman_model', 'itemman_model');
 }
开发者ID:shreksrg,项目名称:microHR,代码行数:5,代码来源:itemman.php


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