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


PHP CWebUser::__get方法代碼示例

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


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

示例1: __get

 /**
  * @param string $attributeName
  * @return mixed|null
  */
 public function __get($attributeName)
 {
     assert('is_string($attributeName)');
     assert('$attributeName != ""');
     try {
         if ($attributeName != 'isGuest' && ($this->userModel === null || $this->switched)) {
             $username = parent::__get('username');
             $this->userModel = User::getByUsername($username);
             $this->switched = false;
         }
         if ($attributeName == 'userModel') {
             return $this->userModel;
         } elseif ($this->userModel !== null && $this->userModel->isAttribute($attributeName)) {
             return $this->userModel->{$attributeName};
         } else {
             return parent::__get($attributeName);
         }
     } catch (NotFoundException $e) {
         if (Yii::app()->isApplicationInstalled()) {
             //Perhaps the username has changed, clear session and logout user.
             Yii::app()->getSession()->destroy();
             Yii::app()->request->redirect(Yii::app()->homeUrl);
         }
     } catch (CException $e) {
     }
 }
開發者ID:maruthisivaprasad,項目名稱:zurmo,代碼行數:30,代碼來源:WebUser.php

示例2: __get

 public function __get($name)
 {
     if ($this->hasState('__userInfo')) {
         $user = $this->getState('__userInfo', array());
         if (isset($user[$name])) {
             return $user[$name];
         }
     }
     return parent::__get($name);
 }
開發者ID:anjanababu,項目名稱:Asset-Management,代碼行數:10,代碼來源:WebUser.php

示例3: __get

    public function __get($name)
    {
        if (array_key_exists($name, User::model()->relations())) {
            if ($user = Yii::app()->getModule('user')->user($this->getId())) {
                return $user->{$name};
            }
            return null;
        }

        return parent::__get($name);
    }
開發者ID:rallin,項目名稱:yii-user,代碼行數:11,代碼來源:WebUser.php

示例4: __get

 public function __get($attribute)
 {
     try {
         return parent::__get($attribute);
     } catch (CException $e) {
         $model = $this->getModel();
         if ($model) {
             return $model->__get($attribute);
         } else {
             throw $e;
         }
     }
 }
開發者ID:blindest,項目名稱:Yii-CMS-2.0,代碼行數:13,代碼來源:WebUser.php

示例5: __get

 public function __get($name)
 {
     try {
         return parent::__get($name);
     } catch (CException $e) {
         $m = $this->getModel();
         if ($m !== NULL && $m->hasAttribute($name)) {
             return $m->{$name};
         } else {
             throw $e;
         }
     }
 }
開發者ID:newga,項目名稱:newga,代碼行數:13,代碼來源:AccessionUser.php

示例6: __get

 public function __get($name)
 {
     try {
         return parent::__get($name);
     } catch (CException $e) {
         $m = $this->getModel();
         if ($m->__isset($name)) {
             return $m->{$name};
         } else {
             throw $e;
         }
     }
 }
開發者ID:Lucerin,項目名稱:Yii-projects,代碼行數:13,代碼來源:WebUser.php

示例7: __get

 public function __get($name)
 {
     if ($this->hasState($name)) {
         return $this->getState($name);
     } elseif (in_array($name, $this->UserStatefulFields)) {
         $user = $this->getUserModel();
         if ($user) {
             return $user->{$name};
         } else {
             return NULL;
         }
     } else {
         return parent::__get($name);
     }
 }
開發者ID:hung5s,項目名稱:yap,代碼行數:15,代碼來源:XWebUser.php


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