Adding login form to each page

Comparing #1 with #2

Revision #2 was created by pestaa pestaa on Aug 23, 2009, 9:10:53 AM.

Make use of $app

Content

[...]
```php
$app=Yii::app();
if($app->createUrl($app->user->loginUrl[0])!=$app->request->getUrl())
$app->user->setReturnUrl(
Yii::$app()->request->getUrl());
```

The above code does the following: if the user is at the login page, the referrer is not saved for future reference (otherwise he will be redirected to the login page right after he logged in, which is, of course, not the desired effect).

In any other cases, the previously viewed page is reloaded if the user logs in with the form in the header.
[...]