Ejemplo n.º 1
0
 /**
  * finds all files associated with this Scheduled Conference by going through all published Papers
  *
  */
 function generateSchedConfFileSecDom(&$doc, &$root, &$conference, &$schedConf)
 {
     $publishedPaperDao = DAORegistry::getDAO('PublishedPaperDAO');
     $publishedPapersIterator =& $publishedPaperDao->getPublishedPapers($schedConf->getId());
     $publishedPaperArray =& $publishedPapersIterator->toArray();
     $i = 0;
     while ($i < sizeof($publishedPaperArray)) {
         MetsExportDom::generatePaperFilesDom($doc, $root, $publishedPaperArray[$i], $conference, $schedConf);
         $i++;
     }
 }