Changeset 9 for index.php


Ignore:
Timestamp:
Oct 11, 2008, 11:06:21 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Částečná podpora pro historii všech záznamů. Editace vytváří nový záznam. Zobrazení historie dané položky.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • index.php

    r8 r9  
    22
    33include_once('global.php');
    4 include('base.php');
    54
    65class IndexPage extends Page
     
    3029        array('Name' => 'Password2', 'Type' => 'Password', 'Caption' => 'Potvrzení hesla', 'Value' => ''),
    3130        array('Name' => 'Email', 'Type' => 'String', 'Caption' => 'E-mail', 'Value' => ''),
    32         array('NAme' => 'FirstName', 'Type' => 'String', 'Caption' => 'Křestní jméno', 'Value' => ''),
     31        array('Name' => 'FirstName', 'Type' => 'String', 'Caption' => 'Křestní jméno', 'Value' => ''),
    3332        array('Name' => 'SecondName', 'Type' => 'String', 'Caption' => 'Příjmení', 'Value' => ''),
    3433      ),
     
    4544      {
    4645        $Output .= $this->SystemMessage('Odhlášení', $this->System->Modules['User']->Logout());
     46      } else
     47      if($_GET['Action'] == 'LoginForm')
     48      {
     49        $Form = new Form();
     50        $Form->Definition = $FormUserLogin;
     51        $Form->OnSubmit = '?Action=Login';
     52        $Output .= $Form->ShowEditForm();
    4753      } else
    4854      if($_GET['Action'] == 'UserRegister')
     
    6975      if(!array_key_exists('Action', $_GET))
    7076      {
    71         $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=LoginForm">Přihlášení</a> <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserRegister">Registrace</a>';
     77        $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=LoginForm">Přihlášení</a><br /><a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserRegister">Registrace</a>';
    7278        $Form = new Form();
    7379        $Form->Definition = $FormUserLogin;
     
    8086      $Output .= $this->System->Modules['User']->User['UserName'].' <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=Logout">Odhlásit</a>';
    8187      $Output .= '<br /><br />';
    82       LoadTypeDefinition();
    83       LoadListDefinition();
    8488      $Output .= TableList(1);
    8589      $Output .= TableList(0);
Note: See TracChangeset for help on using the changeset viewer.