]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - examples/index.php
More movements to the new structure. Modules now have their own directory on
[software/bife/bife-all.git] / examples / index.php
index b7487283fbd367aec47edf4d64fe8ccb58f46d08..fdb958003d9963df6b66be6416c298394e4e4256 100644 (file)
 // $Id$
 //
 
+$incs = array(
+    '../core',
+    '../modules/album',
+    '../modules/basic',
+    '../modules/menu',
+//    '../modules/',
+);
 $tmp = ini_get('include_path');
-ini_set('include_path', "../src:$tmp");
+ini_set('include_path', join(':', $incs) . ":$tmp");
 unset($tmp);
 umask('002');
 
 require_once 'HTML/Template/HIT.php';
-#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/Translate.php';
 require_once 'BIFE/Link.php';
-#require_once 'BIFE/Album.php';
-#require_once 'BIFE.php';
 
 $file = isset($_REQUEST['BIFE']) ? $_REQUEST['BIFE'] : 'index.xbf';
 
 $template =& new HTML_Template_HIT('templates');
-#$template =& new HTML_Template_Sigma('templates', 'compiled_templates');
-#$template->setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_ERROR);
 
-$parser =& new BIFE_Parser('BIFE_Copy');
+$parser =& new BIFE_Parser('BIFE_Translate');
 $page =& $parser->parseFile($file);
 $parser->__destruct();
 echo $page->render($template);