]> git.llucax.com Git - software/bife/bife.git/blobdiff - examples/index.php
Moved other modules to new src structure.
[software/bife/bife.git] / examples / index.php
index c38ac9c098d524c35dd3903f19b0bb0e13ff0098..fc2b1992c4553c6488331e58c4d2e31d48544393 100644 (file)
 // $Id$
 //
 
-$tmp = ini_get('include_path');
-ini_set('include_path', "..:$tmp");
-unset($tmp);
+ini_set('include_path', '../src:'.ini_get('include_path'));
 umask('002');
 
-require_once 'HTML/Template/HIT.php';
-require_once 'BIFE/Parser.php';
-require_once 'BIFE/Translate.php';
-
-$file = isset($_REQUEST['BIFE']) ? $_REQUEST['BIFE'] : 'index.xbf';
-#$file = isset($_SERVER['PATH_INFO']) ? ".{$_SERVER['PATH_INFO']}" : 'index.xbf';
-
-$template =& new HTML_Template_HIT('templates');
-
-$parser =& new BIFE_Parser('BIFE_Translate');
-$page =& $parser->parseFile($file);
-$parser->__destruct();
-echo $page->render($template);
-
 ?>
+
+BIFE is an abstract framework, to see a simple implementation download
+<A href="http://bife.llucax.hn.org/">BIFE_Base package</A>.