Ignore:
Timestamp:
Dec 24, 2013, 5:48:40 PM (11 years ago)
Author:
maron
Message:
  • Fixed: bad description
  • Added: progress in generation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/ProcessTask.php

    r666 r670  
    1414        $System->Run();
    1515
     16function SetProgres($Export,$per) {
     17        $File = new FileStream();
     18        $File->CreateFile($Export->TempDir.'progress');
     19        $File->WriteLine(10);
     20}
     21
    1622while(1)
    1723{
     
    2834        $Export->Id = $DbRow['ExportId'];
    2935        $Export->Init();
     36
     37        SetProgres($Export,10);
     38
    3039        echo('Mazání starých souborů...'."\n");
    3140       
     
    4251        if(file_exists($Export->TempDir.'CzWoW_DBC.zip')) unlink($Export->TempDir.'CzWoW_DBC.zip');
    4352
     53        SetProgres($Export,20);
    4454        if(function_exists('gzcompress'))
    4555        {
     
    4858          exec('zip -r -j '.$Export->TempDir.'CzWoW_DBC.zip '.$Export->TempDir.'dbc/');
    4959          echo('Hotovo'."\n");
     60          SetProgres($Export,80);
    5061        } else echo('Funkce pro tvorbu Zip souboru není podporována!'."\n");
    5162        $System->Database->query('UPDATE `ExportTask` SET `TimeFinish`=NOW() WHERE `Export`='.$Export->Id);
     
    5465        echo 'Caught exception: ',  $e->getMessage(), "\n";
    5566      }
     67      SetProgres($Export,100);
    5668    } else
    5769    {
Note: See TracChangeset for help on using the changeset viewer.