Changeset 816 for trunk/Modules/Export/Progress.php
- Timestamp:
- Feb 22, 2015, 11:20:50 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Progress.php
r743 r816 2 2 3 3 include_once(dirname(__FILE__).'/../../includes/global.php'); 4 4 5 5 $System = new System(); 6 6 $System->DoNotShowPage = true; 7 7 $System->Run(); 8 8 9 9 10 10 $Output = ''; … … 12 12 ' LEFT JOIN `Export` ON `Export`.`Id` = `ExportTask`.`Export` WHERE (`Export`.`OutputType` = 9 OR `Export`.`OutputType` = 10 ) AND `TimeFinish` IS NULL OR `Export` ='.$_GET['RedirectId'].' ORDER BY `Progress` DESC');// `Export`='.$Export->Id 13 13 while($Task = $DbResult->fetch_assoc()) { 14 $Export = '<a href="'.$System->Link('/export/?Action=View&ExportId='.$Task['Export']).'">'.$Task['Export'].'</a>'; 14 $Export = '<a href="'.$System->Link('/export/?Action=View&ExportId='.$Task['Export']).'">'.$Task['Export'].'</a>'; 15 15 if ($_GET['RedirectId'] == $Task['Export']) 16 16 $Export = ''.$Export.' (tento)'; … … 19 19 'setTimeout("parent.location.href=\''.$System->Link('/export/?Action=View&Tab=7&ExportId='.$_GET['RedirectId']).'\'", 500)'. 20 20 '</script>'; 21 } 21 } 22 22 23 23 echo $Output;
Note:
See TracChangeset
for help on using the changeset viewer.