Changeset 388 for trunk/import/index.php
- Timestamp:
- Mar 14, 2010, 7:02:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/import/index.php
r385 r388 56 56 echo('</div><div><strong>Import zdrojů:</strong></div>'); 57 57 58 echo('<div><a href="?action=instructions">Instrukce pro přípravu zdrojových souborů</a></div><br/>'); 58 echo('<div><a href="?action=instructions">Instrukce pro přípravu zdrojových souborů</a></div>'); 59 echo('<div><a href="?action=update_translated">Zaktualizovat verze přeložených</a></div><br/>'); 59 60 echo('Verze klienta použitá pro import: <strong>'.$Config['Web']['GameVersion'].'</strong>'); 60 61 $DbResult = $Database->SQLCommand('SELECT COUNT(*) FROM `Group`'); … … 85 86 } 86 87 88 function UpdateTranslated() 89 { 90 echo('<div style="font-size: xx-small;">'); 91 $Import = new Import(); 92 $Import->UpdateTranslated(); 93 echo('</div>'); 94 } 95 87 96 if(array_key_exists('action', $_GET)) 88 97 { 89 98 if($_GET['action'] == 'instructions') ShowInstructions(); 90 99 else if($_GET['action'] == 'importgroup') ShowImportGroup(); 100 else if($_GET['action'] == 'update_translated') UpdateTranslated(); 91 101 else ShowMenu(); 92 102 } else ShowMenu();
Note:
See TracChangeset
for help on using the changeset viewer.