From f73bc251c7e1362463d632c54f62ea4c48decab8 Mon Sep 17 00:00:00 2001 From: emkael Date: Wed, 4 May 2016 16:36:28 +0200 Subject: * preserving URL on manual login --- app/php/controls/HeaderMenu.php | 7 +++++++ app/php/controls/HeaderMenu.tpl | 5 ++--- 2 files changed, 9 insertions(+), 3 deletions(-) (limited to 'app/php') diff --git a/app/php/controls/HeaderMenu.php b/app/php/controls/HeaderMenu.php index a9759da..1e74be3 100644 --- a/app/php/controls/HeaderMenu.php +++ b/app/php/controls/HeaderMenu.php @@ -6,6 +6,13 @@ Prado::using('System.Web.UI.ActiveControls.TActiveLinkButton'); class HeaderMenu extends TemplateControl { + public function loginUser($sender, $param) { + $this->Application->getModule('auth')->setReturnUrl($this->Request->RequestUri); + $this->Response->redirect( + $this->Service->ConstructUrl('Login') + ); + } + public function logoutUser($sender, $param) { $this->Application->getModule('auth')->logout(); $this->Response->redirect( diff --git a/app/php/controls/HeaderMenu.tpl b/app/php/controls/HeaderMenu.tpl index 603a231..b50c4ef 100644 --- a/app/php/controls/HeaderMenu.tpl +++ b/app/php/controls/HeaderMenu.tpl @@ -1,8 +1,7 @@