JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
copyrighted dwt.php, metaform textboxes aren't puny by default, added kill_session()
[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/misc.php');
22
23 function dwt_reset() {
24         $GLOBALS['_dwt_keys'] = array();
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 function dwt_output($filename = null) {
50         if($filename !== null) {
51                 dwt_load($filename);
52         }
53         print(str_replace($GLOBALS['_dwt_keys'], $GLOBALS['_dwt_values'], $GLOBALS['_dwt_template']));
54 }