summaryrefslogtreecommitdiff
path: root/app/php/components/HeaderMenu.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/components/HeaderMenu.php')
-rw-r--r--app/php/components/HeaderMenu.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/php/components/HeaderMenu.php b/app/php/components/HeaderMenu.php
new file mode 100644
index 0000000..bffe4d2
--- /dev/null
+++ b/app/php/components/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)
+ );
+ }
+
+}
+
+?>