1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
<?php // $Id: tplfile.php,v 1.3.16.1 2005/09/20 00:45:53 skalpa Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // // <http://www.xoops.org/> // // ------------------------------------------------------------------------ // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation; either version 2 of the License, or // // (at your option) any later version. // // // // You may not change or alter any portion of this comment or credits // // of supporting developers from this source code or any supporting // // source code which is considered copyrighted (c) material of the // // original comment or credit authors. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------ // // Author: Kazumi Ono (AKA onokazu) // // URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ // // Project: The XOOPS Project // // ------------------------------------------------------------------------- // if (!defined('XOOPS_ROOT_PATH')) { exit(); } class XoopsTplfile extends XoopsObject {
function XoopsTplfile() { $this->XoopsObject(); $this->initVar('tpl_id', XOBJ_DTYPE_INT, null, false); $this->initVar('tpl_refid', XOBJ_DTYPE_INT, 0, false); $this->initVar('tpl_tplset', XOBJ_DTYPE_OTHER, null, false); $this->initVar('tpl_file', XOBJ_DTYPE_TXTBOX, null, true, 100); $this->initVar('tpl_desc', XOBJ_DTYPE_TXTBOX, null, false, 100); $this->initVar('tpl_lastmodified', XOBJ_DTYPE_INT, 0, false); $this->initVar('tpl_lastimported', XOBJ_DTYPE_INT, 0, false); $this->initVar('tpl_module', XOBJ_DTYPE_OTHER, null, false); $this->initVar('tpl_type', XOBJ_DTYPE_OTHER, null, false); $this->initVar('tpl_source', XOBJ_DTYPE_SOURCE, null, false); }
function &getSource() { return $this->getVar('tpl_source'); }
function getLastModified() { return $this->getVar('tpl_lastmodified'); } }
/** * XOOPS template file handler class. * This class is responsible for providing data access mechanisms to the data source * of XOOPS template file class objects. * * * @author Kazumi Ono <onokazu@xoops.org> */
class XoopsTplfileHandler extends XoopsObjectHandler {
function &create($isNew = true) { $tplfile =& new XoopsTplfile(); if ($isNew) { $tplfile->setNew(); } return $tplfile; }
function &get($id, $getsource = false) { $id = intval($id); if ($id > 0) { if (!$getsource) { $sql = 'SELECT * FROM '.$this->db->prefix('tplfile').' WHERE tpl_id='.$id; } else { $sql = 'SELECT f.*, s.tpl_source FROM '.$this->db->prefix('tplfile').' f LEFT JOIN '.$this->db->prefix('tplsource').' s ON s.tpl_id=f.tpl_id WHERE f.tpl_id='.$id; } if (!$result = $this->db->query($sql)) { return false; } $numrows = $this->db->getRowsNum($result); if ($numrows == 1) { $tplfile = new XoopsTplfile(); $tplfile->assignVars($this->db->fetchArray($result)); return $tplfile; } } return false; }
function loadSource(&$tplfile) { if (strtolower(get_class($tplfile)) != 'xoopstplfile') { return false; } if (!$tplfile->getVar('tpl_source')) { $sql = 'SELECT tpl_source FROM '.$this->db->prefix('tplsource').' WHERE tpl_id='.$tplfile->getVar('tpl_id'); if (!$result = $this->db->query($sql)) { return false; } $myrow = $this->db->fetchArray($result); $tplfile->assignVar('tpl_source', $myrow['tpl_source']); } return true; }
function insert(&$tplfile) { if (strtolower(get_class($tplfile)) != 'xoopstplfile') { return false; } if (!$tplfile->isDirty()) { return true; } if (!$tplfile->cleanVars()) { return false; } foreach ($tplfile->cleanVars as $k => $v) { ${$k} = $v; } if ($tplfile->isNew()) { $tpl_id = $this->db->genId('tpltpl_file_id_seq'); $sql = sprintf("INSERT INTO %s (tpl_id, tpl_module, tpl_refid, tpl_tplset, tpl_file, tpl_desc, tpl_lastmodified, tpl_lastimported, tpl_type) VALUES (%u, %s, %u, %s, %s, %s, %u, %u, %s)", $this->db->prefix('tplfile'), $tpl_id, $this->db->quoteString($tpl_module), $tpl_refid, $this->db->quoteString($tpl_tplset), $this->db->quoteString($tpl_file), $this->db->quoteString($tpl_desc), $tpl_lastmodified, $tpl_lastimported, $this->db->quoteString($tpl_type)); if (!$result = $this->db->query($sql)) { return false; } if (empty($tpl_id)) { $tpl_id = $this->db->getInsertId(); } if (isset($tpl_source) && $tpl_source != '') { $sql = sprintf("INSERT INTO %s (tpl_id, tpl_source) VALUES (%u, %s)", $this->db->prefix('tplsource'), $tpl_id, $this->db->quoteString($tpl_source)); if (!$result = $this->db->query($sql)) { $this->db->query(sprintf("DELETE FROM %s WHERE tpl_id = %u", $this->db->prefix('tplfile'), $tpl_id)); return false; } } $tplfile->assignVar('tpl_id', $tpl_id); } else { $sql = sprintf("UPDATE %s SET tpl_tplset = %s, tpl_file = %s, tpl_desc = %s, tpl_lastimported = %u, tpl_lastmodified = %u WHERE tpl_id = %u", $this->db->prefix('tplfile'), $this->db->quoteString($tpl_tplset), $this->db->quoteString($tpl_file), $this->db->quoteString($tpl_desc), $tpl_lastimported, $tpl_lastmodified, $tpl_id); if (!$result = $this->db->query($sql)) { return false; } if (isset($tpl_source) && $tpl_source != '') { $sql = sprintf("UPDATE %s SET tpl_source = %s WHERE tpl_id = %u", $this->db->prefix('tplsource'), $this->db->quoteString($tpl_source), $tpl_id); if (!$result = $this->db->query($sql)) { return false; } } } return true; }
function forceUpdate(&$tplfile) { if (strtolower(get_class($tplfile)) != 'xoopstplfile') { return false; } if (!$tplfile->isDirty()) { return true; } if (!$tplfile->cleanVars()) { return false; } foreach ($tplfile->cleanVars as $k => $v) { ${$k} = $v; } if (!$tplfile->isNew()) { $sql = sprintf("UPDATE %s SET tpl_tplset = %s, tpl_file = %s, tpl_desc = %s, tpl_lastimported = %u, tpl_lastmodified = %u WHERE tpl_id = %u", $this->db->prefix('tplfile'), $this->db->quoteString($tpl_tplset), $this->db->quoteString($tpl_file), $this->db->quoteString($tpl_desc), $tpl_lastimported, $tpl_lastmodified, $tpl_id); if (!$result = $this->db->queryF($sql)) { return false; } if (isset($tpl_source) && $tpl_source != '') { $sql = sprintf("UPDATE %s SET tpl_source = %s WHERE tpl_id = %u", $this->db->prefix('tplsource'), $this->db->quoteString($tpl_source), $tpl_id); if (!$result = $this->db->queryF($sql)) { return false; } } return true; } else { return false; } }
function delete(&$tplfile) { if (strtolower(get_class($tplfile)) != 'xoopstplfile') { return false; } $id = $tplfile->getVar('tpl_id'); $sql = sprintf("DELETE FROM %s WHERE tpl_id = %u", $this->db->prefix('tplfile'), $id); if (!$result = $this->db->query($sql)) { return false; } $sql = sprintf("DELETE FROM %s WHERE tpl_id = %u", $this->db->prefix('tplsource'), $id); $this->db->query($sql); return true; }
function getObjects($criteria = null, $getsource = false, $id_as_key = false) { $ret = array(); $limit = $start = 0; if ($getsource) { $sql = 'SELECT f.*, s.tpl_source FROM '.$this->db->prefix('tplfile').' f LEFT JOIN '.$this->db->prefix('tplsource').' s ON s.tpl_id=f.tpl_id'; } else { $sql = 'SELECT * FROM '.$this->db->prefix('tplfile'); } if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) { $sql .= ' '.$criteria->renderWhere().' ORDER BY tpl_refid'; $limit = $criteria->getLimit(); $start = $criteria->getStart(); } $result = $this->db->query($sql, $limit, $start); if (!$result) { return $ret; } while ($myrow = $this->db->fetchArray($result)) { $tplfile =& new XoopsTplfile(); $tplfile->assignVars($myrow); if (!$id_as_key) { $ret[] =& $tplfile; } else { $ret[$myrow['tpl_id']] =& $tplfile; } unset($tplfile); } return $ret; }
function getCount($criteria = null) { $sql = 'SELECT COUNT(*) FROM '.$this->db->prefix('tplfile'); if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) { $sql .= ' '.$criteria->renderWhere(); } if (!$result =& $this->db->query($sql)) { return 0; } list($count) = $this->db->fetchRow($result); return $count; }
function getModuleTplCount($tplset) { $ret = array(); $sql = "SELECT tpl_module, COUNT(tpl_id) AS count FROM ".$this->db->prefix('tplfile')." WHERE tpl_tplset='".$tplset."' GROUP BY tpl_module"; $result = $this->db->query($sql); if (!$result) { return $ret; } while ($myrow = $this->db->fetchArray($result)) { if ($myrow['tpl_module'] != '') { $ret[$myrow['tpl_module']] = $myrow['count']; } } return $ret; }
function find($tplset = null, $type = null, $refid = null, $module = null, $file = null, $getsource = false) { $criteria = new CriteriaCompo(); if (isset($tplset)) { $criteria->add(new Criteria('tpl_tplset', $tplset)); } if (isset($module)) { $criteria->add(new Criteria('tpl_module', $module)); } if (isset($refid)) { $criteria->add(new Criteria('tpl_refid', $refid)); } if (isset($file)) { $criteria->add(new Criteria('tpl_file', $file)); } if (isset($type)) { if (is_array($type)) { $criteria2 = new CriteriaCompo(); foreach ($type as $t) { $criteria2->add(new Criteria('tpl_type', $t), 'OR'); } $criteria->add($criteria2); } else { $criteria->add(new Criteria('tpl_type', $type)); } } return $this->getObjects($criteria, $getsource, false); }
function templateExists($tplname, $tplset_name) { $criteria = new CriteriaCompo(new Criteria('tpl_file', trim($tplname))); $criteria->add(new Criteria('tpl_tplset', trim($tplset_name))); if ($this->getCount($criteria) > 0) { return true; } return false; } } ?>
|