Skip to content

Instantly share code, notes, and snippets.

@jamband
Last active August 10, 2016 10:17
Show Gist options
  • Save jamband/1426248 to your computer and use it in GitHub Desktop.
Save jamband/1426248 to your computer and use it in GitHub Desktop.
<?php
class WebUser extends CWebUser
{
protected function afterLogin($fromCookie)
{
$model = User::model()->findByPk(Yii::app()->user->id);
$model->last_ip = Yii::app()->request->userHostAddress;
$model->last_login = new CDbExpression('NOW()');
$model->save(true, array('last_ip', 'last_login'));
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment