<?php
/**
* This test exists to illustrate the benefits of doing subloop in the template, allowing openoffice to have really better perfs in conversion.
*/
include("../library/PODREngine.php");
include("DataSet.php");
$nb_occur=10000;
$podr=new PODREngine(array(
"InputFileName"=>"test_big_tables.odt",
"OutputFileName"=>"test_out.odt",
"OutputMode"=>PODREngine::SAVEMODE_HTTP,
));
$podr->movies=array_slice($movieList,0,$nb_occur);
$podr->output();
?>