Batch Jobs (<?php 
echo count($batch_jobs);
?>
):
<br>
<table border=1 cellspacing=0>
<?php 
echo investigate::printBatchjobHeader();
?>
	<?php 
$i = 0;
foreach ($batch_jobs as $bj) {
    $i++;
    $color = $i % 2 == 0 ? "#E0E0E0" : "#F8F8F8 ";
    $tr_style = "background-color:{$color}; margin: 10px 1 6px; ";
    echo investigate::printBatchjob($bj, false, $tr_style);
}
?>
</table>


<br>
Old Conversions (<?php 
echo count($conversions);
?>
):
<br>
<table border=1 cellspacing=0 >
	<?php 
echo investigate::printConversionHeader($entry->id, $entry->mediaType == 1 && $entry->status >= 1);
?>
Example #2
0
?>
) conversions:
<br>
<table border=1 cellspacing=0 	style="font-family:verdana; font-size:12px">
	<?php 
echo investigate::printConversionHeader();
?>
	<?php 
foreach ($conversions as $conversion) {
    echo investigate::printConversion($conversion, true);
}
?>
</table>

<br>
Last (<?php 
echo $import_count;
?>
) imports:
<br>
<table border=1 cellspacing=0
	style="font-family:verdana; font-size:12px">
<?php 
echo investigate::printBatchjobHeader();
?>
	<?php 
foreach ($imports as $bj) {
    echo investigate::printBatchjob($bj, true);
}
?>
</table>