<div style="margin:5px;"> Unprocessed Specimens: <?php echo $unprocessedCnt; ?> </div> <div style="margin:5px;"> Unprocessed Specimens without Images: <?php echo $procManager->getUnprocSpecNoImage(); ?> </div> <div style="margin:5px;"> Unprocessed Specimens without OCR: <?php echo $procManager->getSpecNoOcr(); ?> </div> </div> <?php if ($unprocessedCnt) { ?> <div> </div> <?php } else { echo '<div>There are no unprocessed records to </div>'; } } else { ?>
var fileName = f.ocrfile.value; if(fileName != ""){ var ext = fileName.split('.').pop(); if(ext != 'zip' && ext != 'ZIP'){ alert("Upload file must be a ZIP file with a .zip extension"); return false; } } return true; } </script> <div style="margin:15px;"> <?php $cntTotal = $procManager->getSpecWithImage(); $cntUnproc = $procManager->getSpecWithImage($procStatus); $cntUnprocNoOcr = $procManager->getSpecNoOcr($procStatus); if ($procStatus == 'null') { $procStatus = 'No Status'; } ?> <fieldset style="padding:20px;"> <legend><b>Specimen Image Statistics</b></legend> <div><b>Total specimens with images:</b> <?php echo $cntTotal; ?> </div> <div><b>"<?php echo $procStatus; ?> " specimens with images:</b> <?php