X-Git-Url: https://git.llucax.com/software/bife/bife-all.git/blobdiff_plain/83c0aaf19ae9241ba9f30da47013479ee761685e..93ebb6cfe68748103b065768c7cb530ebefc7543:/examples/index.php diff --git a/examples/index.php b/examples/index.php index 5e21623..4d7651a 100644 --- a/examples/index.php +++ b/examples/index.php @@ -32,9 +32,10 @@ unset($tmp); require_once 'HTML/Template/Sigma.php'; require_once 'BIFE/Parser.php'; +require_once 'BIFE/Copy.php'; require_once 'BIFE/Page.php'; require_once 'BIFE/Title.php'; -require_once 'BIFE/Album.php'; +#require_once 'BIFE/Album.php'; #require_once 'BIFE.php'; $file = 'simple.xbf'; @@ -42,9 +43,9 @@ $file = 'simple.xbf'; $template =& new HTML_Template_Sigma('templates'); $template->setErrorHandling(PEAR_ERROR_PRINT); -$parser =& new BIFE_Parser($template); -$parser->parseFile($file); -echo $parser->getOutput(); +$parser =& new BIFE_Parser('BIFE_Copy'); +$page =& $parser->parseFile($file); $parser->__destruct(); +echo $page->render($template); ?>