Changeset 12 for trunk/www/page.php


Ignore:
Timestamp:
Jun 11, 2009, 9:37:46 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Nezobrazovat HTML kód v ladícím výpisu SQL dotazů při spuštění skriptu z příkazové řádky.
  • Upraveno: Překládat emulátory včetně ladících informací.
  • Přidáno: Funkce generování spouštěcích skriptů emulátoru pro servery.
  • Opraveno: Funkce zpracování a importu log souborů emulátoru do databáze tabulky Debug.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/page.php

    r8 r12  
    2525    '<title>'.$this->System->Config['Web']['Title'].' - '.$Path.'</title>
    2626    </head><body'.$BodyParam.'>'.
    27     '<div class="Navigation"><span class="MenuItem"><a href="?">Seznam serverů</a>';
     27    '<div class="Navigation"><span class="MenuItem"><a href="?">Servery</a>';
    2828    if($this->System->Modules['User']->User['Id'] != $this->System->Modules['User']->AnonymousUserId)
    2929    {
     
    3232      if($DbRow[0] > 0) $Output .= ' <a href="?Action=ServerShow">Vlastní server</a>';
    3333      else $Output .= ' <a href="?Action=ServerAdd">Vytvořit vlastní server</a>';
     34      $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>';
     35      if($this->System->Modules['User']->User['Role'] == USER_ROLE_ADMINISTRATOR)
     36      {
     37        $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=EmulatorList">Emulátory</a>';
     38      }
    3439    }
    3540    $Output .= '</span><div class="MenuItem2">';
     
    3742      $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>';
    3843      else $Output .= $this->System->Modules['User']->User['Name'].' <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=Logout">Odhlásit</a>';
    39 // <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>';
    4044    $Output .= '</div></div>';
    4145    return($Output);
Note: See TracChangeset for help on using the changeset viewer.