Changeset 636 for trunk/Modules
- Timestamp:
- Dec 11, 2013, 12:15:15 PM (11 years ago)
- Location:
- trunk/Modules
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/ClientVersion/ClientVersion.php
r622 r636 31 31 function Show() 32 32 { 33 $this->Title = T('Game version'); 33 34 $DbResult = $this->System->Database->query('SELECT COUNT(*) FROM `ClientVersion`'); 34 35 $DbRow = $DbResult->fetch_row(); -
trunk/Modules/Dictionary/Dictionary.php
r626 r636 311 311 global $LanguageList; 312 312 313 $this->Title = T('Dictionary'); 314 313 315 $LanguageList = GetLanguageList(); 314 316 -
trunk/Modules/Export/Page.php
r609 r636 728 728 function Show() 729 729 { 730 $this->Title = T('Export'); 730 731 if(array_key_exists('Action', $_GET)) 731 732 { -
trunk/Modules/FrontPage/FrontPage.php
r622 r636 72 72 global $Message, $MessageType; 73 73 74 $this->Title = T('Home'); 74 75 $this->System->ModuleManager->Modules['FrontPage']->HandleLoginForm(); 75 76 $Output = ''; -
trunk/Modules/Import/Manage.php
r609 r636 95 95 function Show() 96 96 { 97 $this->Title = T('Import'); 97 98 $Output = ''; 98 99 if($this->System->User->Licence(LICENCE_ADMIN)) -
trunk/Modules/Log/Log.php
r625 r636 126 126 global $TranslationTree; 127 127 128 $this->Title = T('System log'); 128 129 $Output = ''; 129 130 if(array_key_exists('type', $_GET)) $_SESSION['type'] = $_GET['type'] * 1; -
trunk/Modules/News/News.php
r622 r636 65 65 function Show() 66 66 { 67 $this->Title = T('News'); 67 68 if(array_key_exists('a', $_POST)) $Action = $_POST['a']; 68 69 else if(array_key_exists('a', $_GET)) $Action = $_GET['a']; -
trunk/Modules/Referrer/Referrer.php
r622 r636 196 196 function Show() 197 197 { 198 $this->Title = T('Banners'); 198 199 if(array_key_exists('action', $_GET)) 199 200 { -
trunk/Modules/Search/Search.php
r626 r636 39 39 function Show() 40 40 { 41 $this->Title = T('Search'); 41 42 if(array_key_exists('text', $_GET)) $Search = $_GET['text']; 42 43 else if(array_key_exists('text', $_POST)) $Search = $_POST['text']; -
trunk/Modules/Server/Server.php
r609 r636 32 32 function Show() 33 33 { 34 $this->Title = T('Servers'); 34 35 $Output = '<p>V tomto seznamu jsou uvedeny jen servery, které skutečně hráčům nabízejí počeštěnou hru v praxi. Rozlišuje se, zda češtinu nabízí na straně klienta, serveru nebo obojí. Pojem "český server" zde tedy neznamená, že jej provozují češi, ale že lze hrát česky.</p>'; 35 36 $Output .= '<h3>Seznam českých serverů</h3>'; -
trunk/Modules/ShoutBox/ShoutBox.php
r626 r636 44 44 function Show() 45 45 { 46 $this->Title = T('Shoutbox'); 46 47 if(array_key_exists('a', $_POST)) $Action = $_POST['a']; 47 48 else if(array_key_exists('a', $_GET)) $Action = $_GET['a']; -
trunk/Modules/Team/Team.php
r626 r636 36 36 function ShowTeamList() 37 37 { 38 $this->Title = T('Teams'); 38 39 $Output = '<h3>'.T('List of translating teams').'</h3>'; 39 40 $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/>'; -
trunk/Modules/Translation/Form.php
r633 r636 53 53 function Show() 54 54 { 55 $this->Title = T('Translation'); 55 56 $Action = ''; 56 57 if(array_key_exists('action', $_GET)) $Action = $_GET['action']; -
trunk/Modules/Translation/Progress.php
r584 r636 66 66 function Show() 67 67 { 68 $this->Title = T('Progress'); 68 69 $LanguageList = GetLanguageList(); 69 70 -
trunk/Modules/Translation/TranslationList.php
r609 r636 245 245 global $TranslationTree; 246 246 247 247 $Output = $Filter['Output']; 248 248 249 249 $Output .= '<table class="BaseTable"><tr><th>Skupina</th><th>Počet</th></tr>'; … … 434 434 function Show() 435 435 { 436 $this->Title = T('Translation groups'); 436 437 $Action = GetParameter('action', ''); 437 438 if($Action == 'filter') $Output = $this->ShowMenu(); -
trunk/Modules/User/Options.php
r578 r636 74 74 if($NewPass == $NewPass2) 75 75 { 76 $DbResult = $ System->Database->query('SELECT `Pass`, '.$this->System->User->CryptPasswordSQL('"'.$OldPass.'"', '`Salt`').' AS `Hash` FROM `User` WHERE `ID`= '.$this->System->User->Id);76 $DbResult = $this->System->Database->query('SELECT `Pass`, '.$this->System->User->CryptPasswordSQL('"'.$OldPass.'"', '`Salt`').' AS `Hash` FROM `User` WHERE `ID`= '.$this->System->User->Id); 77 77 $DbRow = $DbResult->fetch_assoc(); 78 78 if($DbRow['Hash'] == $DbRow['Pass']) … … 97 97 function Show() 98 98 { 99 $this->Title = T('User settings'); 99 100 $Output = ''; 100 101 if($this->System->User->Licence(LICENCE_USER)) -
trunk/Modules/User/Profile.php
r609 r636 172 172 function Show() 173 173 { 174 $this->Title = T('User profile'); 174 175 $Output = $this->SendMail(); 175 176 if(array_key_exists('user', $_GET)) -
trunk/Modules/User/Registration.php
r618 r636 76 76 global $Config; 77 77 78 $this->Title = T('User registration'); 78 79 $Output = ''; 79 80 if(array_key_exists('user', $_POST)) -
trunk/Modules/User/UserList.php
r626 r636 7 7 function Show() 8 8 { 9 $this->Title = T('Translators'); 9 10 ImgLevelUpdate(); 10 11
Note:
See TracChangeset
for help on using the changeset viewer.