11 private function _build_replace($r, $prefix){
13 if(is_array($r) && count($r)) {
14 foreach ($r as $k => $v ) {
16 $this->_build_replace($v, "$prefix$k.");
18 $this->search[] = $prefix . $k;
19 $this->replace[] = $v;
24 private function _push_stack(){
25 $this->stack[] = array($this->r, $this->search, $this->replace, $this->nodes);
27 private function _pop_stack(){
28 list($this->r, $this->search, $this->replace, $this->nodes) = array_pop($this->stack);
31 private function _get_var($name){
32 $keys = array_map('trim',explode(".",$name));
34 foreach($keys as $k) {
43 * {{ if <$var> }}...{{ endif }}
45 private function _replcb_if($args){
46 $val = $this->_get_var($args[2]);
47 return ($val?$args[3]:"");
53 * {{ for <$var> as $name }}...{{ endfor }}
54 * {{ for <$var> as $key=>$name }}...{{ endfor }}
56 private function _replcb_for($args){
57 $m = array_map('trim', explode(" as ", $args[2]));
58 list($keyname, $varname) = explode("=>",$m[1]);
59 if (is_null($varname)) { $varname=$keyname; $keyname=""; }
60 if ($m[0]=="" || $varname=="" || is_null($varname)) die("template error: 'for ".$m[0]." as ".$varname."'") ;
61 $vals = $this->r[$m[0]];
63 if (!is_array($vals)) return $ret;
64 foreach ($vals as $k=>$v){
68 if ($keyname!='') $r[$keyname] = $k;
69 $ret .= $this->replace($args[3], $r);
78 * {{ inc <templatefile> [with $var1=$var2] }}{{ endinc }}
80 private function _replcb_inc($args){
81 list($tplfile, $newctx) = array_map('trim', explode("with",$args[2]));
84 if (!is_null($newctx)) {
85 list($a,$b) = array_map('trim', explode("=",$newctx));
86 $r[$a] = $this->_get_var($b);
88 $this->nodes = Array();
89 $tpl = get_markup_template($tplfile);
90 $ret = $this->replace($tpl, $r);
96 private function _replcb_node($m) {
97 $node = $this->nodes[$m[1]];
98 if (method_exists($this, "_replcb_".$node[1])){
99 return call_user_func(array($this, "_replcb_".$node[1]), $node);
105 private function _replcb($m){
107 $this->nodes[] = (array) $m;
108 return "||". (count($this->nodes)-1) ."||";
111 private function _build_nodes($s){
113 while (!$this->done){
115 $s = preg_replace_callback('|{{ *([a-z]*) *([^}]*)}}([^{]*){{ *end\1 *}}|', array($this, "_replcb"), $s);
117 krsort($this->nodes);
121 public function replace($s, $r) {
123 $this->search = array();
124 $this->replace = array();
126 $this->_build_replace($r, "");
128 #$s = str_replace(array("\n","\r"),array("§n§","§r§"),$s);
129 $s = $this->_build_nodes($s);
130 $s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s);
131 $s = str_replace($this->search,$this->replace,$s);