Changeset 674 for trunk/Modules/Export/Export.php
- Timestamp:
- Dec 29, 2013, 8:49:21 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Export.php
r672 r674 256 256 257 257 function AddProgress($add = 2) { 258 if (file_exists($this->TempDir.'progress')) { 258 259 $File = new FileStream(); 259 260 $File->OpenFile($this->TempDir.'progress'); 260 261 $Line = $File->ReadLine(); 262 261 263 $File = new FileStream(); 262 264 $File->CreateFile($this->TempDir.'progress'); 263 265 $Line+=$add; 264 266 $File->WriteLine($Line); 267 } 265 268 } 266 269 … … 362 365 if($Progress != $OldProgress) 363 366 { 367 if ($Group['Id'] == 13) $this->AddProgress(0.01); 364 368 $Output .= $Progress."%\r"; 365 369 echo($Output); … … 401 405 // $CanExport = false; 402 406 // $DbRow[$Column['Column']] = str_replace ( '$ ','$',$DbRow[$Column['Column']]); 403 // echo $DbRow[$Column['Column']].' - '.$DbRow['En'.$Column['Column']].'404 //'; 407 $DbRow[$Column['Column']] = $DbRow['En'.$Column['Column']]; 408 405 409 if (!$this->HaveVarible($DbRow['En'.$Column['Column']],$DbRow[$Column['Column']])) { 406 410 if ($CanExport) $Output .= ', NE='.$DbRow['ID'];
Note:
See TracChangeset
for help on using the changeset viewer.