]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - examples/hit.php
Final cleanups for 0.10 release:
[software/bife/bife-all.git] / examples / hit.php
index 9dae06df75656afbff5a7213d46a22bc879e6bf3..f9ec3971ca43e7448a084606d6dc4f46eb4914ad 100644 (file)
@@ -29,7 +29,7 @@
 // This is a simple test and example of HTML_Template_HIT
 
 $tmp = ini_get('include_path');
-ini_set('include_path', "../src:$tmp");
+ini_set('include_path', "../core:$tmp");
 unset($tmp);
 umask('002');
 
@@ -37,14 +37,18 @@ require_once 'HTML/Template/HIT.php';
 
 $hit =& new HTML_Template_HIT('hooks');
 
-$rows = '';
 for ($i = 0; $i < 20; $i++) {
-    $cells = '';
     for ($j = 0; $j < 20; $j++) {
-        $cells .= $hit->parse('cell', array('CELL' => "$i,$j"));
+        $hit->parseBuffered('cell', 'CELL', "$i,$j");
     }
-    $rows .= $hit->parse('row', array('ROW' => $cells, 'CACA' => 'fea'));
+    $hit->parseBuffered('row', 'ROW', $hit->popBuffer('cell'));
 }
-echo $hit->parse('body', array('ROWS' => $rows, 'TITLE' => 'HOLA MUNDO!!!'));
+echo $hit->parse(
+    'body',
+    array(
+        'ROWS' => $hit->popBuffer('row'),
+        'TITLE' => 'HOLA MUNDO!!!',
+    )
+);
 
 ?>