Ignore:
Timestamp:
Aug 21, 2013, 9:49:36 PM (11 years ago)
Author:
chronos
Message:
  • Modified: Changed some pages names to without .php names.
File:
1 edited

Legend:

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

    r555 r569  
    1616  function Start()
    1717  {
    18         $this->System->RegisterPage('team.php', 'PageTeam');
     18        $this->System->RegisterPage('team', 'PageTeam');
    1919        $this->System->RegisterMenuItem(array(
    2020      'Title' => 'Týmy',
    2121      'Hint' => 'Seznam překladatelských týmů',
    22       'Link' => $this->System->Link('/team.php?search='),
     22      'Link' => $this->System->Link('/team/?search='),
    2323      'Permission' => LICENCE_ANONYMOUS,
    2424      'Icon' => '',
     
    3737                $Output = '<h3>Seznam překladatelských týmů</h3>';
    3838                $Output .= 'Týmy jsou seskupení překladatelů, kteří se hlásí k něčemu společnému jako např. WoW serveru, způsobu překladu, ke stejnému hernímu spolku, aj. Být členem týmu samo o sobě nemá žádný zásadní důsledek a spíše to může pomoci se lépe orientovat mezi překladateli někomu, kdo sestavuje export.<br/>';
    39                 $DbResult = $this->Database->query('SELECT COUNT(*) FROM `Team`');
     39
     40    if($User->Licence(LICENCE_USER))
     41                  $Output .= '<br /><div style="text-align: center;"><a href="?action=create">Vytvořit překladatelský tým</a></div><br/>';
     42               
     43          $DbResult = $this->Database->query('SELECT COUNT(*) FROM `Team`');
    4044                $DbRow = $DbResult->fetch_row();
    4145                $PageList = GetPageList($DbRow[0]);
     
    8185                                $PageList['Output'];
    8286       
    83                 if($User->Licence(LICENCE_USER))
    84                         $Output .= '<br /><div style="text-align: center;"><a href="?action=create">Vytvořit překladatelský tým</a></div>';
    8587                return($Output);
    8688        }
Note: See TracChangeset for help on using the changeset viewer.