summaryrefslogtreecommitdiff
path: root/demos/personal/protected
diff options
context:
space:
mode:
Diffstat (limited to 'demos/personal/protected')
-rw-r--r--demos/personal/protected/Common/LoginPortlet.php36
-rw-r--r--demos/personal/protected/Common/MainMenu.php22
-rw-r--r--demos/personal/protected/Pages/Layout.php12
-rw-r--r--demos/personal/protected/Pages/Register.php36
4 files changed, 53 insertions, 53 deletions
diff --git a/demos/personal/protected/Common/LoginPortlet.php b/demos/personal/protected/Common/LoginPortlet.php
index 1f5cd4f5..1b93912b 100644
--- a/demos/personal/protected/Common/LoginPortlet.php
+++ b/demos/personal/protected/Common/LoginPortlet.php
@@ -1,19 +1,19 @@
-<?php
-
-class LoginPortlet extends TTemplateControl
-{
- public function validateUser($sender,$param)
- {
- $authManager=$this->Application->getModule('auth');
- if(!$authManager->login($this->Username->Text,$this->Password->Text))
- $param->IsValid=false;
- }
-
- public function loginButtonClicked($sender,$param)
- {
- if($this->Page->IsValid)
- $this->Response->redirect($this->Application->getModule('auth')->getReturnUrl());
- }
-}
-
+<?php
+
+class LoginPortlet extends TTemplateControl
+{
+ public function validateUser($sender,$param)
+ {
+ $authManager=$this->Application->getModule('auth');
+ if(!$authManager->login($this->Username->Text,$this->Password->Text))
+ $param->IsValid=false;
+ }
+
+ public function loginButtonClicked($sender,$param)
+ {
+ if($this->Page->IsValid)
+ $this->Response->redirect($this->Application->getModule('auth')->getReturnUrl());
+ }
+}
+
?> \ No newline at end of file
diff --git a/demos/personal/protected/Common/MainMenu.php b/demos/personal/protected/Common/MainMenu.php
index a2334c03..5e1e95c0 100644
--- a/demos/personal/protected/Common/MainMenu.php
+++ b/demos/personal/protected/Common/MainMenu.php
@@ -1,12 +1,12 @@
-<?php
-
-class MainMenu extends TTemplateControl
-{
- public function logout($sender,$param)
- {
- $this->Application->getModule('auth')->logout();
- $this->Response->redirect($this->Service->constructUrl('Home'));
- }
-}
-
+<?php
+
+class MainMenu extends TTemplateControl
+{
+ public function logout($sender,$param)
+ {
+ $this->Application->getModule('auth')->logout();
+ $this->Response->redirect($this->Service->constructUrl('Home'));
+ }
+}
+
?> \ No newline at end of file
diff --git a/demos/personal/protected/Pages/Layout.php b/demos/personal/protected/Pages/Layout.php
index ba96038b..7f5e5802 100644
--- a/demos/personal/protected/Pages/Layout.php
+++ b/demos/personal/protected/Pages/Layout.php
@@ -1,7 +1,7 @@
-<?php
-
-class Layout extends TTemplateControl
-{
-}
-
+<?php
+
+class Layout extends TTemplateControl
+{
+}
+
?> \ No newline at end of file
diff --git a/demos/personal/protected/Pages/Register.php b/demos/personal/protected/Pages/Register.php
index b699d859..26f9aa50 100644
--- a/demos/personal/protected/Pages/Register.php
+++ b/demos/personal/protected/Pages/Register.php
@@ -1,19 +1,19 @@
-<?php
-
-class Register extends TPage
-{
- public function checkUsername($sender,$param)
- {
- // set $param->IsValid to false if the username is already taken
- }
-
- public function createUser($sender,$param)
- {
- if($this->IsValid)
- {
- // create new user account
- }
- }
-}
-
+<?php
+
+class Register extends TPage
+{
+ public function checkUsername($sender,$param)
+ {
+ // set $param->IsValid to false if the username is already taken
+ }
+
+ public function createUser($sender,$param)
+ {
+ if($this->IsValid)
+ {
+ // create new user account
+ }
+ }
+}
+
?> \ No newline at end of file