Changeset 681 for trunk/Modules/Export/cmdmpqexport.php
- Timestamp:
- Jan 1, 2014, 2:40:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/cmdmpqexport.php
r669 r681 36 36 } 37 37 } 38 if(!array_key_exists('ExportId', $_GET) and !array_key_exists(' version', $_GET) and !array_key_exists('dbc', $_GET) and !array_key_exists('lua', $_GET) and !array_key_exists('addon', $_GET)) {38 if(!array_key_exists('ExportId', $_GET) and !array_key_exists('needgeneration', $_GET) and !array_key_exists('version', $_GET) and !array_key_exists('dbc', $_GET) and !array_key_exists('lua', $_GET) and !array_key_exists('addon', $_GET)) { 39 39 $Output .= 'Usage type_export=id_export -for export<br />'; 40 40 $Output .= 'Usage ExportId=id_export - for write export info<br />'; 41 $Output .= 'Usage needgeneration=id_export - for write export info<br />'; 41 42 42 43 $Output .= 'type_export={lua,dbc,addon} <br />'; … … 86 87 } 87 88 89 if(array_key_exists('needgeneration', $_GET)) { 90 $Export = new Export($System); 91 $Export->Id = $_GET['needgeneration']; 92 $Output .= $Export->Init(); 93 if ($Export->NeedGeneration()) { 94 $DbResult = $System->Database->query('SELECT * FROM ExportTask WHERE Export = '.$Export->Id); 95 if($DbResult->num_rows == 0) 96 { 97 $System->Database->query('INSERT INTO ExportTask (`Export` ,`TimeStart` ) VALUES ('.$Export->Id.', NOW())'); 98 } else 99 $System->Database->query('UPDATE ExportTask SET TimeStart = NOW(), TimeFinish = NULL WHERE Export = '.$Export->Id); 100 101 $System->ModuleManager->Modules['Log']->WriteLog('Zadání úlohy pro vygenerování dbc souboru', LOG_TYPE_DOWNLOAD); 102 $Output .= 'Export set to generation'; 103 } else $Output .= 'Export do not need generation'; 104 $Output = str_replace('<br/>',' 105 ',$Output); 106 $Output = str_replace('<br />',' 107 ',$Output); 108 } 109 88 110 if(array_key_exists('ExportId', $_GET)) { 89 111 $Export = new Export($System); … … 127 149 '<h2>Nejčastější otázky</h2>'. 128 150 '<p><strong>Jak mám hru spustit?</strong><br>'. 129 'Hru musíte spustit přes soubor Wo WLua.exe v kořenovém adresáři hry.</p>'.151 'Hru musíte spustit přes soubor WowCz.exe v kořenovém adresáři hry.</p>'. 130 152 131 153 '<p><strong>Mohu použít tuto češtinu na oficiálních serverech?</strong><br>'.
Note:
See TracChangeset
for help on using the changeset viewer.