Changeset 880 for trunk/Modules/Import/Manage.php
- Timestamp:
- Apr 7, 2020, 10:15:48 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Import/Manage.php
r859 r880 19 19 '<li>Po provedení importu je potřeba několikrát spustit skript na aktualizaci verze u překladu. Je potřeba ho provádět opakovaně dokud nezmizí tečky označující, že byly provedeny změny.</li>'. 20 20 '</ol>'; 21 return ($Output);21 return $Output; 22 22 } 23 23 … … 26 26 global $System; 27 27 28 if (array_key_exists('id', $_GET))28 if (array_key_exists('id', $_GET)) 29 29 { 30 30 $Output = '<div style="font-size: xx-small;">'; … … 38 38 $Output .= '</div>'; 39 39 } else $Output = ShowMessage('Nebylo zadáno id skupiny.', MESSAGE_CRITICAL); 40 return ($Output);40 return $Output; 41 41 } 42 42 … … 68 68 69 69 $DbResult = $this->System->Database->query('SELECT * FROM `Group`'.$Order['SQL'].$PageList['SQLLimit']); 70 while ($Group = $DbResult->fetch_assoc())70 while ($Group = $DbResult->fetch_assoc()) 71 71 { 72 72 $Output .= '<tr><td>'.T($Group['Name']).'</td>'. 73 73 '<td>'.$Group['SourceType'].'</td><td>'; 74 if ($Group['MangosTable'] != '') $Output .= $Group['MangosTable'].'.sql ';75 if ($Group['DBCFileName'] != '') $Output .= $Group['DBCFileName'].'.dbc ';76 if ($Group['LuaFileName'] != '') $Output .= $Group['LuaFileName'].'.lua ';74 if ($Group['MangosTable'] != '') $Output .= $Group['MangosTable'].'.sql '; 75 if ($Group['DBCFileName'] != '') $Output .= $Group['DBCFileName'].'.dbc '; 76 if ($Group['LuaFileName'] != '') $Output .= $Group['LuaFileName'].'.lua '; 77 77 $Output .= '</td>'. 78 78 '<td><a title="Změny po posledním importu u vybrané překladové skupiny" href="../log/?group='.$Group['Id'].'&type=11">'.HumanDate($Group['LastImport']).'</a></td>'. … … 82 82 } 83 83 $Output .= '</table>'; 84 return ($Output);84 return $Output; 85 85 } 86 86 … … 93 93 $Output .= $Import->UpdateTranslated(); 94 94 $Output .= '</div>'; 95 return ($Output);95 return $Output; 96 96 } 97 97 … … 100 100 $this->Title = T('Import'); 101 101 $Output = ''; 102 if ($this->System->User->Licence(LICENCE_ADMIN))102 if ($this->System->User->Licence(LICENCE_ADMIN)) 103 103 { 104 if (array_key_exists('action', $_GET))104 if (array_key_exists('action', $_GET)) 105 105 { 106 if ($_GET['action'] == 'instructions') $Output .= $this->ShowInstructions();107 else if ($_GET['action'] == 'importgroup') $Output .= $this->ShowImportGroup();108 else if ($_GET['action'] == 'update_translated') $Output .= $this->UpdateTranslated();106 if ($_GET['action'] == 'instructions') $Output .= $this->ShowInstructions(); 107 else if ($_GET['action'] == 'importgroup') $Output .= $this->ShowImportGroup(); 108 else if ($_GET['action'] == 'update_translated') $Output .= $this->UpdateTranslated(); 109 109 else $Output .= $this->ShowMenu(); 110 110 } else $Output .= $this->ShowMenu(); 111 111 } else $Output .= ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 112 return ($Output);112 return $Output; 113 113 } 114 114 }
Note:
See TracChangeset
for help on using the changeset viewer.