Changeset 569 for trunk/Modules/Team/Team.php
- Timestamp:
- Aug 21, 2013, 9:49:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Team/Team.php
r555 r569 16 16 function Start() 17 17 { 18 $this->System->RegisterPage('team .php', 'PageTeam');18 $this->System->RegisterPage('team', 'PageTeam'); 19 19 $this->System->RegisterMenuItem(array( 20 20 'Title' => 'Týmy', 21 21 'Hint' => 'Seznam překladatelských týmů', 22 'Link' => $this->System->Link('/team .php?search='),22 'Link' => $this->System->Link('/team/?search='), 23 23 'Permission' => LICENCE_ANONYMOUS, 24 24 'Icon' => '', … … 37 37 $Output = '<h3>Seznam překladatelských týmů</h3>'; 38 38 $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`'); 40 44 $DbRow = $DbResult->fetch_row(); 41 45 $PageList = GetPageList($DbRow[0]); … … 81 85 $PageList['Output']; 82 86 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>';85 87 return($Output); 86 88 }
Note:
See TracChangeset
for help on using the changeset viewer.