Changeset 796
- Timestamp:
- Feb 12, 2014, 8:54:47 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FrontPage/FrontPage.php
r778 r796 13 13 $this->Dependencies = array('News', 'User', 'ShoutBox', 'Translation'); 14 14 } 15 15 16 16 function Start() 17 17 { … … 19 19 $this->System->RegisterMenuItem(array( 20 20 'Title' => T('Home'), 21 'Hint' => T('Main page'), 21 'Hint' => T('Main page'), 22 22 'Link' => $this->System->Link('/'), 23 23 'Permission' => LICENCE_ANONYMOUS, 24 'Icon' => '', 24 'Icon' => '', 25 25 ), 0); 26 26 } 27 27 28 28 function HandleLoginForm() 29 29 { 30 30 global $Message, $MessageType; 31 31 32 32 if(array_key_exists('action', $_GET)) 33 33 { … … 65 65 } 66 66 } 67 } 67 } 68 68 } 69 69 … … 73 73 { 74 74 global $Message, $MessageType; 75 75 76 76 $this->Title = T('Home'); 77 77 $this->System->ModuleManager->Modules['FrontPage']->HandleLoginForm(); 78 78 $Output = ''; 79 79 if(isset($Message)) $Output .= ShowMessage($Message, $MessageType); 80 80 81 81 $Output .= '<br />'. 82 83 84 $Output .= '<tr><td><h3><a href="'.$this->System->Link('/download/').'">'.T('Download Czech File').'</a></h3></tr><td>';82 '<table class="Home"><tr><td colspan="3">'.$this->ShowWelcome(). 83 '</td></tr>'; 84 $Output .= '<tr><td><h3><a href="'.$this->System->Link('/download/').'">'.T('Download Czech File').'</a></h3></td></tr>'; 85 85 86 86 $Output .= '<tr><td>'.$this->ShowLastTranslated().'</td>'. … … 89 89 '</tr></table>'; 90 90 return($Output); 91 } 92 91 } 92 93 93 function ShowLastTranslated() 94 94 { 95 95 $Count = 40; 96 96 $Output = '<strong>'.T('Last translated').':</strong>'; 97 97 98 98 $GroupListQuery = 'SELECT `Group`.* FROM `Group`'; 99 99 $Query = ''; … … 140 140 } 141 141 setcookie('HideWelcome', $_COOKIE['HideWelcome'], time() + 3600 * 24 * 365); 142 142 143 143 if(isset($_COOKIE['HideWelcome']) and ($_COOKIE['HideWelcome'] == 1)) 144 144 { … … 150 150 $HideWelcome = ''; 151 151 } 152 152 153 153 // Echo text even if it is hidden because of caching by external searching engines 154 154 return('<div style="'.$HideWelcome.'">'. … … 161 161 '<li>Přeložené texty lze volně stahovat v různých tvarech jako XML, SQL, Addon a Lua. Přeložené texty lze tedy snadno importovat do svého free serveru nebo použít v jiných projektech.</li>'. 162 162 '<li>Cílem projektu je přeložit všechny texty ze hry. Nikoliv pouze texty výprav (questů).</li>'. 163 '<li>Díky propracovanému systému volitelných exportů si můžete stáhnout libovolnou část překladu, klidně pouze výpravy. A vynechat tak překlady předmětů, jména postav a jiných. '.163 '<li>Díky propracovanému systému volitelných exportů si můžete stáhnout libovolnou část překladu, klidně pouze výpravy. A vynechat tak překlady předmětů, jména postav a jiných.</li>'. 164 164 '<li>Texty lze překládat do dvou jazyků, češtiny a slovenštiny.</li>'. 165 165 '</ul></div>'.$Action); 166 } 166 } 167 167 } -
trunk/includes/Version.php
r795 r796 6 6 // and system will need database update. 7 7 8 $Revision = 79 5; // Subversion revision8 $Revision = 796; // Subversion revision 9 9 $DatabaseRevision = 787; // Database structure revision 10 10 $ReleaseTime = '2014-02-12';
Note:
See TracChangeset
for help on using the changeset viewer.