Ignore:
Timestamp:
Jun 18, 2013, 8:30:40 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Do hlavní nabídky lze přidávat položky na určitou pozici.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global.php

    r548 r549  
    1616include_once(dirname(__FILE__).'/../Modules/AoWoW/AoWoW.php');
    1717include_once(dirname(__FILE__).'/../Modules/Referrer/Referrer.php');
    18 include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php');
    1918include_once(dirname(__FILE__).'/../Modules/Team/Team.php');
    2019include_once(dirname(__FILE__).'/../Modules/User/User.php');
    2120include_once(dirname(__FILE__).'/../Modules/Dictionary/Dictionary.php');
     21include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php');
    2222
    2323GlobalInit();
     
    645645}
    646646
    647 function HandleLoginForm()
    648 {
    649   global $User, $Message, $MessageType;
    650  
    651   if(array_key_exists('action', $_GET))
    652   {
    653     if($_GET['action'] == 'login')
    654     {
    655       if(array_key_exists('LoginUser', $_POST) and array_key_exists('LoginPass', $_POST))
    656       {
    657         $User->Login($_POST['LoginUser'], $_POST['LoginPass']);
    658         if($User->Role == LICENCE_ANONYMOUS)
    659         {
    660           $Message = 'Jméno nebo heslo bylo zadáno špatně.';
    661           $MessageType = MESSAGE_CRITICAL;
    662         } else
    663         {
    664           $Message = 'Přihlášení proběhlo úspěšně. Vítej <strong>'.$User->Name.'</strong>!';
    665           $MessageType = MESSAGE_INFORMATION;
    666         }
    667       } else
    668       {
    669         $Message = 'Nebylo zadáno jméno a heslo.';
    670         $MessageType = MESSAGE_CRITICAL;
    671       }
    672     } else
    673       if($_GET['action'] == 'logout')
    674       {
    675         if($User->Role != LICENCE_ANONYMOUS)
    676         {
    677           WriteLog('Odhlášení', LOG_TYPE_USER);
    678           $User->Logout();
    679           $Message = 'Byl jsi odhlášen.';
    680           $MessageType = MESSAGE_INFORMATION;
    681         }
    682       }
    683   }
    684 }
    685 
    686647function ProcessURL()
    687648{
Note: See TracChangeset for help on using the changeset viewer.