X-Git-Url: https://git.llucax.com/software/bife/bife-all.git/blobdiff_plain/3658b126d4873c96dd3b08af6619795790e23ac2..e8635d15ec803ea97364ff72f136a9e0fcc66281:/examples/index.php diff --git a/examples/index.php b/examples/index.php index 33b14e1..3b9f86d 100644 --- a/examples/index.php +++ b/examples/index.php @@ -27,24 +27,19 @@ // $tmp = ini_get('include_path'); -ini_set('include_path', "../src:$tmp"); +ini_set('include_path', "..:$tmp"); unset($tmp); +umask('002'); -require_once 'HTML/Template/Sigma.php'; +require_once 'HTML/Template/HIT.php'; require_once 'BIFE/Parser.php'; -require_once 'BIFE/Copy.php'; -require_once 'BIFE/Page.php'; -require_once 'BIFE/Title.php'; -require_once 'BIFE/Link.php'; -#require_once 'BIFE/Album.php'; -#require_once 'BIFE.php'; +require_once 'BIFE/Translate.php'; $file = isset($_REQUEST['BIFE']) ? $_REQUEST['BIFE'] : 'index.xbf'; -$template =& new HTML_Template_Sigma('templates', 'compiled_templates'); -$template->setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_ERROR); +$template =& new HTML_Template_HIT('templates'); -$parser =& new BIFE_Parser('BIFE_Copy'); +$parser =& new BIFE_Parser('BIFE_Translate'); $page =& $parser->parseFile($file); $parser->__destruct(); echo $page->render($template);