Changeset 417 for trunk/export
- Timestamp:
- Apr 7, 2010, 7:31:53 AM (15 years ago)
- Location:
- trunk/export
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/export/export.php
r408 r417 73 73 "-- ===========================================\n". 74 74 "--\n". 75 "-- Web projektu: ".$this->Config['Web'][' BaseURL']."\n".75 "-- Web projektu: ".$this->Config['Web']['Host'].$this->System->Link('/')."\n". 76 76 "-- Datum exportu: ".date("j.n.Y H:i:s")."\n". 77 77 "-- Znaková sada: ".$this->Config['Database']['Charset']." / ".$this->Config['Web']['Charset']."\n". … … 192 192 "<document>\n". 193 193 " <meta>\n". 194 " <projecturl>".$this->Config['Web'][' BaseURL']."</projecturl>\n".194 " <projecturl>".$this->Config['Web']['Host'].$this->System->Link('/')."</projecturl>\n". 195 195 " <time>".date('r')."</time>\n". 196 196 " <diacritics mode=".'"'.$this->Export['WithDiacritic'].'"'." />\n". -
trunk/export/index.php
r412 r417 79 79 function ExportCreateFinish() 80 80 { 81 global $Database, $Config, $User ;81 global $Database, $Config, $User, $System; 82 82 83 83 if($User->Licence(LICENCE_USER)) … … 92 92 $ExportId = mysql_insert_id(); 93 93 echo('Nový export vytvořen.<br/>Přímý odkaz na tento export: <a href="?Action=View&ExportId='.$ExportId.'">zde</a><br/><br/>'); 94 WriteLog('Vytvořen nový export <a href="'.$ Config['Web']['BaseURL'].'export/?Action=View&ExportId='.$ExportId.'">'.$ExportId.'</a>.', LOG_TYPE_EXPORT);94 WriteLog('Vytvořen nový export <a href="'.$System->Link('/export/?Action=View&ExportId='.$ExportId).'">'.$ExportId.'</a>.', LOG_TYPE_EXPORT); 95 95 $_GET['Filter'] = 'my'; 96 96 ExportList(); … … 118 118 function ExportViewTranslators() 119 119 { 120 global $Database, $TranslationTree, $Config, $User ;120 global $Database, $TranslationTree, $Config, $User, $System; 121 121 122 122 $DisabledInput = array(false => ' disabled="disabled"', true => ''); … … 201 201 $Sequence = '<input type="text" name="seq'.$UserLine['ID'].'" style="text-align: center; width: 40px;" value="'.$UserLine['Sequence2'].'"'.$DisabledInput[$Editable].'/>'; 202 202 echo('<tr> 203 <td><a href="'.$ Config['Web']['BaseURL'].'/TranslationList.php?user='.$UserLine['ID'].'&action=userall" title="Zobrazit všechny jeho přeložené texty">'.$UserLine['Name'].'</a></td>203 <td><a href="'.$System->Link('/TranslationList.php?user='.$UserLine['ID'].'&action=userall').'" title="Zobrazit všechny jeho přeložené texty">'.$UserLine['Name'].'</a></td> 204 204 <td>'.$UserLine['TranslatedCount'].'</td> 205 205 <td><img src="'.$Config['Web']['TempFolder'].'/user/'.$UserLine['Name'].'/level.png" alt="Úroveň uživatele" /></td>
Note:
See TracChangeset
for help on using the changeset viewer.