JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
moved read_whole_file() to file no file.php. tar.php uses rsync, and supports links
[wfpl.git] / dwt.php
1 <?php
2
3 #  Copyright (C) 2007 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
7 #  wfpl is free software; you can redistribute it and/or modify it under the
8 #  terms of the GNU Lesser General Public License as published by the Free
9 #  Software Foundation; either version 2.1 of the License, or (at your option)
10 #  any later version.
11 #
12 #  wfpl is distributed in the hope that it will be useful, but WITHOUT ANY
13 #  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 #  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
15 #  more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public License
18 #  along with wfpl; if not, write to the Free Software Foundation, Inc., 51
19 #  Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20
21 require_once('code/wfpl/file.php');
22
23 function dwt_reset() {
24         $GLOBALS['_dwt_keys'] = array('<!-- TemplateEndEditable -->');
25         $GLOBALS['_dwt_values'] = array('');
26 }
27
28 function dwt_init() {
29         if(isset($GLOBALS['_dwt_keys']) && isset($GLOBALS['_dwt_values'])) {
30                 return;
31         }
32         dwt_reset();
33 }
34
35 function dwt_load($filename) {
36         $GLOBALS['_dwt_template'] = read_whole_file($filename);
37         dwt_init();
38 }
39
40 function dwt_set_raw($name, $value) {
41         $GLOBALS['_dwt_keys'][] = $name;
42         $GLOBALS['_dwt_values'][] = $value;
43 }
44
45 function dwt_set($name, $value) {
46         dwt_set_raw("<!-- TemplateBeginEditable name=\"$name\" -->", $value);
47 }
48
49 # returns index into arrays
50 function dwt_find_raw($name) {
51         for($i = 0; $i < count($GLOBALS['_dwt_keys']); ++$i) {
52                 if($GLOBALS['_dwt_keys'][$i] == $name) {
53                         return $i;
54                 }
55         }
56         return null;
57 }
58
59 # returns index into arrays
60 function dwt_find($name) {
61         return dwt_find_raw("<!-- TemplateBeginEditable name=\"$name\" -->");
62 }
63
64 function dwt_append($name, $value) {
65         $index = dwt_find($name);
66         if($index !== null) {
67                 $GLOBALS['_dwt_values'][$index] .= $value;
68         } else {
69                 dwt_set($name, $value);
70         }
71 }
72
73 function dwt_output($filename = null) {
74         if($filename !== null) {
75                 dwt_load($filename);
76         }
77         print(str_replace($GLOBALS['_dwt_keys'], $GLOBALS['_dwt_values'], $GLOBALS['_dwt_template']));
78 }
79
80 ?>