Ignore:
Timestamp:
Sep 11, 2013, 10:37:54 PM (11 years ago)
Author:
chronos
Message:
  • Modified: Moved some code from global to system file. System class is now serving as main application class. Now old files which still use ShowPage function need system initialization with $InitSystem = true; before global.php inclusion.
  • Modified: Get rid of some global reference to $System, $Config and $User variables.
  • Modified: Search result functionality moved to application module from action.php file.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/FrontPage/FrontPage.php

    r565 r577  
    2828  function HandleLoginForm()
    2929  {
    30         global $User, $Message, $MessageType;
     30        global $Message, $MessageType;
    3131 
    3232        if(array_key_exists('action', $_GET))
     
    3636                        if(array_key_exists('LoginUser', $_POST) and array_key_exists('LoginPass', $_POST))
    3737                        {
    38                                 $User->Login($_POST['LoginUser'], $_POST['LoginPass']);
    39                                 if($User->Role == LICENCE_ANONYMOUS)
     38                                $this->System->User->Login($_POST['LoginUser'], $_POST['LoginPass']);
     39                                if($this->System->User->Role == LICENCE_ANONYMOUS)
    4040                                {
    4141                                        $Message = 'Jméno nebo heslo bylo zadáno špatně.';
     
    4343                                } else
    4444                                {
    45                                         $Message = 'Přihlášení proběhlo úspěšně. Vítej <strong>'.$User->Name.'</strong>!';
     45                                        $Message = 'Přihlášení proběhlo úspěšně. Vítej <strong>'.$this->System->User->Name.'</strong>!';
    4646                                        $MessageType = MESSAGE_INFORMATION;
    4747                                }
     
    5454                        if($_GET['action'] == 'logout')
    5555                        {
    56                                 if($User->Role != LICENCE_ANONYMOUS)
     56                                if($this->System->User->Role != LICENCE_ANONYMOUS)
    5757                                {
    5858                                        WriteLog('Odhlášení', LOG_TYPE_USER);
    59                                         $User->Logout();
     59                                        $this->System->User->Logout();
    6060                                        $Message = 'Byl jsi odhlášen.';
    6161                                        $MessageType = MESSAGE_INFORMATION;
Note: See TracChangeset for help on using the changeset viewer.