XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
imagecategory.php
Go to the documentation of this file.
1 <?php
19 defined('XOOPS_ROOT_PATH') or die('Restricted access');
20 
35 {
37 
41  function XoopsImagecategory()
42  {
43  $this->XoopsObject();
44  $this->initVar('imgcat_id', XOBJ_DTYPE_INT, null, false);
45  $this->initVar('imgcat_name', XOBJ_DTYPE_TXTBOX, null, true, 100);
46  $this->initVar('imgcat_display', XOBJ_DTYPE_INT, 1, false);
47  $this->initVar('imgcat_weight', XOBJ_DTYPE_INT, 0, false);
48  $this->initVar('imgcat_maxsize', XOBJ_DTYPE_INT, 0, false);
49  $this->initVar('imgcat_maxwidth', XOBJ_DTYPE_INT, 0, false);
50  $this->initVar('imgcat_maxheight', XOBJ_DTYPE_INT, 0, false);
51  $this->initVar('imgcat_type', XOBJ_DTYPE_OTHER, null, false);
52  $this->initVar('imgcat_storetype', XOBJ_DTYPE_OTHER, null, false);
53  }
54 
58  function id($format = 'N')
59  {
60  return $this->getVar('imgcat_id', $format);
61  }
62 
66  function imgcat_id($format = '')
67  {
68  return $this->getVar('imgcat_id', $format);
69  }
70 
74  function imgcat_name($format = '')
75  {
76  return $this->getVar('imgcat_name', $format);
77  }
78 
82  function imgcat_display($format = '')
83  {
84  return $this->getVar('imgcat_display', $format);
85  }
86 
90  function imgcat_weight($format = '')
91  {
92  return $this->getVar('imgcat_weight', $format);
93  }
94 
98  function imgcat_maxsize($format = '')
99  {
100  return $this->getVar('imgcat_maxsize', $format);
101  }
102 
106  function imgcat_maxwidth($format = '')
107  {
108  return $this->getVar('imgcat_maxwidth', $format);
109  }
110 
114  function imgcat_maxheight($format = '')
115  {
116  return $this->getVar('imgcat_maxheight', $format);
117  }
118 
122  function imgcat_type($format = '')
123  {
124  return $this->getVar('imgcat_type', $format);
125  }
126 
130  function imgcat_storetype($format = '')
131  {
132  return $this->getVar('imgcat_storetype', $format);
133  }
134 
140  function setImageCount($value)
141  {
142  $this->_imageCount = intval($value);
143  }
144 
150  function getImageCount()
151  {
152  return $this->_imageCount;
153  }
154 
155 }
156 
167 {
174  function &create($isNew = true)
175  {
176  $imgcat = new XoopsImagecategory();
177  if ($isNew) {
178  $imgcat->setNew();
179  }
180  return $imgcat;
181  }
182 
190  function &get($id)
191  {
192  $id = intval($id);
193  $imgcat = false;
194  if ($id > 0) {
195  $sql = 'SELECT * FROM ' . $this->db->prefix('imagecategory') . ' WHERE imgcat_id=' . $id;
196  if (!$result = $this->db->query($sql)) {
197  return $imgcat;
198  }
199  $numrows = $this->db->getRowsNum($result);
200  if ($numrows == 1) {
201  $imgcat = new XoopsImagecategory();
202  $imgcat->assignVars($this->db->fetchArray($result));
203  }
204  }
205  return $imgcat;
206  }
207 
214  function insert(&$imgcat)
215  {
219  if (!is_a($imgcat, 'xoopsimagecategory')) {
220  return false;
221  }
222 
223  if (!$imgcat->isDirty()) {
224  return true;
225  }
226  if (!$imgcat->cleanVars()) {
227  return false;
228  }
229  foreach ($imgcat->cleanVars as $k => $v) {
230  ${$k} = $v;
231  }
232  if ($imgcat->isNew()) {
233  $imgcat_id = $this->db->genId('imgcat_imgcat_id_seq');
234  $sql = sprintf("INSERT INTO %s (imgcat_id, imgcat_name, imgcat_display, imgcat_weight, imgcat_maxsize, imgcat_maxwidth, imgcat_maxheight, imgcat_type, imgcat_storetype) VALUES (%u, %s, %u, %u, %u, %u, %u, %s, %s)", $this->db->prefix('imagecategory'), $imgcat_id, $this->db->quoteString($imgcat_name), $imgcat_display, $imgcat_weight, $imgcat_maxsize, $imgcat_maxwidth, $imgcat_maxheight, $this->db->quoteString($imgcat_type), $this->db->quoteString($imgcat_storetype));
235  } else {
236  $sql = sprintf("UPDATE %s SET imgcat_name = %s, imgcat_display = %u, imgcat_weight = %u, imgcat_maxsize = %u, imgcat_maxwidth = %u, imgcat_maxheight = %u, imgcat_type = %s WHERE imgcat_id = %u", $this->db->prefix('imagecategory'), $this->db->quoteString($imgcat_name), $imgcat_display, $imgcat_weight, $imgcat_maxsize, $imgcat_maxwidth, $imgcat_maxheight, $this->db->quoteString($imgcat_type), $imgcat_id);
237  }
238  if (!$result = $this->db->query($sql)) {
239  return false;
240  }
241  if (empty($imgcat_id)) {
242  $imgcat_id = $this->db->getInsertId();
243  }
244  $imgcat->assignVar('imgcat_id', $imgcat_id);
245  return true;
246  }
247 
254  function delete(&$imgcat)
255  {
259  if (!is_a($imgcat, 'xoopsimagecategory')) {
260  return false;
261  }
262 
263  $sql = sprintf("DELETE FROM %s WHERE imgcat_id = %u", $this->db->prefix('imagecategory'), $imgcat->getVar('imgcat_id'));
264  if (!$result = $this->db->query($sql)) {
265  return false;
266  }
267  return true;
268  }
269 
277  function getObjects($criteria = null, $id_as_key = false)
278  {
279  $ret = array();
280  $limit = $start = 0;
281  $sql = 'SELECT DISTINCT c.* FROM ' . $this->db->prefix('imagecategory') . ' c LEFT JOIN ' . $this->db->prefix('group_permission') . " l ON l.gperm_itemid=c.imgcat_id WHERE (l.gperm_name = 'imgcat_read' OR l.gperm_name = 'imgcat_write')";
282  if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
283  $where = $criteria->render();
284  $sql .= ($where != '') ? ' AND ' . $where : '';
285  $limit = $criteria->getLimit();
286  $start = $criteria->getStart();
287  }
288  $sql .= ' ORDER BY imgcat_weight, imgcat_id ASC';
289  $result = $this->db->query($sql, $limit, $start);
290  if (!$result) {
291  return $ret;
292  }
293  while ($myrow = $this->db->fetchArray($result)) {
294  $imgcat = new XoopsImagecategory();
295  $imgcat->assignVars($myrow);
296  if (!$id_as_key) {
297  $ret[] =& $imgcat;
298  } else {
299  $ret[$myrow['imgcat_id']] =& $imgcat;
300  }
301  unset($imgcat);
302  }
303  return $ret;
304  }
305 
312  function getCount($criteria = null)
313  {
314  $sql = 'SELECT COUNT(*) FROM ' . $this->db->prefix('imagecategory') . ' i LEFT JOIN ' . $this->db->prefix('group_permission') . " l ON l.gperm_itemid=i.imgcat_id WHERE (l.gperm_name = 'imgcat_read' OR l.gperm_name = 'imgcat_write')";
315  if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
316  $where = $criteria->render();
317  $sql .= ($where != '') ? ' AND ' . $where : '';
318  }
319  if (!$result =& $this->db->query($sql)) {
320  return 0;
321  }
322  list ($count) = $this->db->fetchRow($result);
323  return $count;
324  }
325 
333  function getList($groups = array(), $perm = 'imgcat_read', $display = null, $storetype = null)
334  {
335  $criteria = new CriteriaCompo();
336  if (is_array($groups) && !empty($groups)) {
337  $criteriaTray = new CriteriaCompo();
338  foreach ($groups as $gid) {
339  $criteriaTray->add(new Criteria('gperm_groupid', $gid), 'OR');
340  }
341  $criteria->add($criteriaTray);
342  if ($perm == 'imgcat_read' || $perm == 'imgcat_write') {
343  $criteria->add(new Criteria('gperm_name', $perm));
344  $criteria->add(new Criteria('gperm_modid', 1));
345  }
346  }
347  if (isset($display)) {
348  $criteria->add(new Criteria('imgcat_display', intval($display)));
349  }
350  if (isset($storetype)) {
351  $criteria->add(new Criteria('imgcat_storetype', $storetype));
352  }
353  $categories =& $this->getObjects($criteria, true);
354  $ret = array();
355  foreach (array_keys($categories) as $i) {
356  $ret[$i] = $categories[$i]->getVar('imgcat_name');
357  }
358  return $ret;
359  }
360 }
361 ?>