Ignore:
Timestamp:
Aug 25, 2009, 1:04:56 PM (15 years ago)
Author:
george
Message:
  • Opraveno: Na některých místech kontrola oprávnění.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Application/View/User.php

    r76 r77  
    6969    $Form->LoadValuesFromForm();
    7070    $Result = $this->System->Modules['User']->Login($Form->Values['Username'], $Form->Values['Password']);
    71     $Output = $this->System->SystemMessage('Přihlášení', $Result);
     71    $Page = new PageView($this->System);
     72    $Output = $Page->SystemMessage('Přihlášení', $Result);
    7273    if($Result <> $this->System->Translate('UserLoggedIn'))
    7374    {
     
    8990      $Form->LoadValuesFromForm();
    9091      $Result = $this->System->Modules['User']->Register($Form->Values['Login'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Name']);
    91       $Output = $this->System->SystemMessage('Registrace nového účtu', $Result);
     92      $Page = new PageView($this->System);
     93      $Output = $Page->SystemMessage('Registrace nového účtu', $Result);
    9294      if($Result <> $this->System->Translate('UserRegistrated'))
    9395      {
     
    101103  function PasswordRecoveryConfirm()
    102104  {
    103     $Output = $this->System->SystemMessage('Obnova hesla', $this->System->Modules['User']->PasswordRecoveryConfirm($_GET['User'], $_GET['H'], $_GET['P']));
     105    $Page = new PageView($this->System);
     106    $Output = $Page->SystemMessage('Obnova hesla', $this->System->Modules['User']->PasswordRecoveryConfirm($_GET['User'], $_GET['H'], $_GET['P']));
    104107    $Output .= $this->LoginForm();
    105108    return($Output);
     
    111114    $Form->LoadValuesFromForm();
    112115    $Result = $this->System->Modules['User']->PasswordRecoveryRequest($Form->Values['Name'], $Form->Values['Email']);
    113     $Output = $this->System->SystemMessage('Obnova hesla', $Result);
     116    $Page = new PageView($this->System);
     117    $Output = $Page->SystemMessage('Obnova hesla', $Result);
    114118    if($Result <> $this->System->Translate('UserPasswordRecoverySuccess'))
    115119    {
     
    129133  function Logout()
    130134  {
    131     $Output = $this->System->SystemMessage('Odhlášení', $this->System->Modules['User']->Logout());
     135    $Page = new PageView($this->System);
     136    $Output = $Page->SystemMessage('Odhlášení', $this->System->Modules['User']->Logout());
    132137    $Output .= $this->Login();
    133138    return($Output);
     
    148153    $UserOptions->LoadValuesFromForm();
    149154    $UserOptions->SaveValuesToDatabase($this->System->Modules['User']->User['Id']);
    150     $Output = $this->System->SystemMessage('Nastavení', 'Nastavení uloženo.');
     155    $Page = new PageView($this->System);
     156    $Output = $Page->SystemMessage('Nastavení', 'Nastavení uloženo.');
    151157    $this->System->Modules['Log']->NewRecord('User', 'Nastavení uživatele změněno', $UserOptions->Values['Name']);
    152158    $UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->User['Id']);
     
    177183    if($Config['Web']['UserRegistrationEnabled'])
    178184    {
    179       $Output = $this->System->SystemMessage('Potvrzení registrace', $this->System->Modules['User']->RegisterConfirm($_GET['User'], $_GET['H']));
     185      $Page = new PageView($this->System);
     186      $Output = $Page->SystemMessage('Potvrzení registrace', $this->System->Modules['User']->RegisterConfirm($_GET['User'], $_GET['H']));
    180187      $Output .= $this->ShowLoginForm();
    181188    } else $Output = 'Registrace nových účtů nejsou povoleny.';
Note: See TracChangeset for help on using the changeset viewer.