Changeset 47 for trunk/Application/Controller/User.php
- Timestamp:
- Jul 27, 2014, 9:14:56 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 2 1 config.php 2 .project
-
- Property svn:ignore
-
trunk/Application/Controller/User.php
r40 r47 8 8 $View = new UserView($this->System); 9 9 return($Page->GetOutput($View->Login())); 10 } 11 10 } 11 12 12 function LoginFinish() 13 13 { … … 15 15 $View = new UserView($this->System); 16 16 return($Page->GetOutput($View->LoginFinish())); 17 } 17 } 18 18 19 19 function Logout() … … 22 22 $View = new UserView($this->System); 23 23 return($Page->GetOutput($View->Logout())); 24 } 24 } 25 25 26 26 function Options() … … 29 29 $View = new UserView($this->System); 30 30 return($Page->GetOutput($View->Options())); 31 } 32 31 } 32 33 33 function OptionsSave() 34 34 { … … 36 36 $View = new UserView($this->System); 37 37 return($Page->GetOutput($View->OptionsSave())); 38 } 38 } 39 39 40 40 function Register() … … 43 43 $View = new UserView($this->System); 44 44 return($Page->GetOutput($View->Register())); 45 } 45 } 46 46 47 47 function RegisterConfirm() … … 50 50 $View = new UserView($this->System); 51 51 return($Page->GetOutput($View->Confirm())); 52 } 52 } 53 53 54 54 function PasswordRecovery() … … 57 57 $View = new UserView($this->System); 58 58 return($Page->GetOutput($View->PasswordRecovery())); 59 } 59 } 60 60 61 61 function PasswordRecoveryFinish() … … 64 64 $View = new UserView($this->System); 65 65 return($Page->GetOutput($View->PasswordRecovery())); 66 } 66 } 67 67 68 68 function PasswordRecoveryConfirm() … … 71 71 $View = new UserView($this->System); 72 72 return($Page->GetOutput($View->PasswordRecoveryConfirm())); 73 } 73 } 74 74 75 75 function RegisterSave() … … 78 78 $View = new UserView($this->System); 79 79 return($Page->GetOutput($View->RegisterSave())); 80 } 80 } 81 81 } 82 83 ?>
Note:
See TracChangeset
for help on using the changeset viewer.