diff options
Diffstat (limited to 'app/php/components')
-rw-r--r-- | app/php/components/HeaderMenu.php | 16 | ||||
-rw-r--r-- | app/php/components/HeaderMenu.tpl | 14 |
2 files changed, 30 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) + ); + } + +} + +?> diff --git a/app/php/components/HeaderMenu.tpl b/app/php/components/HeaderMenu.tpl new file mode 100644 index 0000000..eceea1b --- /dev/null +++ b/app/php/components/HeaderMenu.tpl @@ -0,0 +1,14 @@ +<nav role="navigation"> + <com:THyperLink Text="Login"> + <prop:NavigateUrl><%= $this->Service->constructUrl('Login') %></prop:NavigateUrl> + <prop:Visible><%= $this->User->IsGuest %></prop:Visible> + </com:THyperLink> + <com:TActiveLinkButton OnCommand="logoutUser"> + <prop:Text>Logout (<%= $this->User->Name %>)</prop:Text> + <prop:Visible><%= !$this->User->IsGuest %></prop:Visible> + </com:TActiveLinkButton> + <com:THyperLink Text="New user"> + <prop:NavigateUrl><%= $this->Service->constructUrl('Signup') %></prop:NavigateUrl> + <prop:Visible><%= $this->User->getIsAdmin() %></prop:Visible> + </com:THyperLink> +</nav> |