Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was trying to get user id but I am failing to get and

echo Yii::app()->user->id; or echo Yii::app()->user->getId();

returns the name of user which is wearied. Any idea what is wrong?

share|improve this question

2 Answers

up vote 4 down vote accepted

you should have getId function in user Identity

share|improve this answer
1  
As mentioned above, you need to implement getId() in your identity class. Its explained here: yiiframework.com/doc/guide/1.1/en/… – Boaz Rymland Dec 21 '11 at 9:28

Yii::app()->user returns a component CWebUser by default.

When you want to get some additional information about user, you need to extend this component.

Create a file WebUser.php in your components folder. (my example below)

class WebUser extends CWebUser {
    /**
     * Gets the FullName of user
     *
     * @return string
     */
    public function getFullName()
    {
        return $this->_model->first_name . ' ' .$this->_model->last_name;
    }
}

In your config file find section

'components'=>array(
'user'=>array(
'class'=>'WebUser'
)
)

if there is no this section , just create it. And change 'class'=> to WebUser'.

share|improve this answer
why do we use 'components'=>array( 'user'=>array( 'class'=>'WebUser' ) )? For adding extra classes? – Riaz Khan Dec 21 '11 at 6:17
@Riaz for extending CWebUser behaviors – RusAlex Dec 21 '11 at 8:54
@RiazKhan: To tell Yii that it should create an instance of your own WebUser class (that provides this extra functionality) instead of the built-in CWebUser. – Jon Dec 21 '11 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.