Changeset 536 for trunk/index.php
- Timestamp:
- Apr 23, 2013, 10:42:18 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r527 r536 96 96 } 97 97 98 if(array_key_exists('action', $_GET)) 99 { 100 if($_GET['action'] == 'login') 101 { 102 if(array_key_exists('LoginUser', $_POST) and array_key_exists('LoginPass', $_POST)) 103 { 104 $User->Login($_POST['LoginUser'], $_POST['LoginPass']); 105 if($User->Role == LICENCE_ANONYMOUS) 106 { 107 $Message = 'Jméno nebo heslo bylo zadáno špatně.'; 108 $MessageType = MESSAGE_CRITICAL; 109 } else 110 { 111 $Message = 'Přihlášení proběhlo úspěšně. Vítej <strong>'.$User->Name.'</strong>!'; 112 $MessageType = MESSAGE_INFORMATION; 113 } 114 } else 115 { 116 $Message = 'Nebylo zadáno jméno a heslo.'; 117 $MessageType = MESSAGE_CRITICAL; 118 } 119 } else 120 if($_GET['action'] == 'logout') 121 { 122 if($User->Role != LICENCE_ANONYMOUS) 123 { 124 WriteLog('Odhlášení', LOG_TYPE_USER); 125 $User->Logout(); 126 $Message = 'Byl jsi odhlášen.'; 127 $MessageType = MESSAGE_INFORMATION; 128 } 129 } 130 } 98 HandleLoginForm(); 131 99 132 100 $Output = '';
Note:
See TracChangeset
for help on using the changeset viewer.