X-Git-Url: https://git.llucax.com/software/bife/album.git/blobdiff_plain/d3f41f9634d581f812cef16212bb4d8480937627..bfd9a49fd57743ab7538097fd721cb30ab204671:/examples/index.php diff --git a/examples/index.php b/examples/index.php index dcc619f..e40a965 100644 --- a/examples/index.php +++ b/examples/index.php @@ -1,5 +1,5 @@ -'; + echo htmlentities(join('', file($file))); + } else { + // We want to see the php file source. + highlight_file($_SERVER['SCRIPT_FILENAME']); + } + exit; +} +// }}} -$parser =& new BIFE_Parser('BIFE_Translate'); -$page =& $parser->parseFile($file); +// If we are not looking at the source, we use BIFE to show the page {{{ +$template =& new HTML_Template_HIT('templates'); +$parser =& new BIFE_Parser('BIFE_Translate'); +$page =& $parser->parseFile($file); $parser->__destruct(); echo $page->render($template); +// }}} ?>