summaryrefslogtreecommitdiff
path: root/app/php/controls/HeaderMenu.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-04-06 13:50:31 +0200
committeremkael <emkael@tlen.pl>2016-04-06 13:51:23 +0200
commitdfe234a7aaaacedcc94716f955b44a1b50c4a057 (patch)
tree3c16b945b65a654d6dd63421250fb2bb496cd1f2 /app/php/controls/HeaderMenu.php
parentfd7b7aa1bade514a87667ff90b94dc3050f68560 (diff)
* components -> controls
Diffstat (limited to 'app/php/controls/HeaderMenu.php')
-rw-r--r--app/php/controls/HeaderMenu.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/php/controls/HeaderMenu.php b/app/php/controls/HeaderMenu.php
new file mode 100644
index 0000000..bffe4d2
--- /dev/null
+++ b/app/php/controls/HeaderMenu.php
@@ -0,0 +1,16 @@
+<?php
+
+Prado::using('System.Web.UI.ActiveControls.TActiveLinkButton');
+
+class HeaderMenu extends TTemplateControl {
+
+ public function logoutUser($sender, $param) {
+ $this->Application->getModule('auth')->logout();
+ $this->Response->redirect(
+ $this->Service->ConstructUrl(NULL)
+ );
+ }
+
+}
+
+?>