當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。