XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
group.php
Go to the documentation of this file.
1 <?php
19 defined('XOOPS_ROOT_PATH') or die('Restricted access');
20 
28 class XoopsGroup extends XoopsObject
29 {
33  function XoopsGroup()
34  {
35  $this->XoopsObject();
36  $this->initVar('groupid', XOBJ_DTYPE_INT, null, false);
37  $this->initVar('name', XOBJ_DTYPE_TXTBOX, null, true, 100);
38  $this->initVar('description', XOBJ_DTYPE_TXTAREA, null, false);
39  $this->initVar('group_type', XOBJ_DTYPE_OTHER, null, false);
40  }
41 
45  function id($format = 'N')
46  {
47  return $this->getVar('groupid', $format);
48  }
49 
53  function groupid($format = '')
54  {
55  return $this->getVar('groupid', $format);
56  }
57 
61  function name($format = '')
62  {
63  return $this->getVar('name', $format);
64  }
65 
69  function description($format = '')
70  {
71  return $this->getVar('description', $format);
72  }
73 
77  function group_type($format = '')
78  {
79  return $this->getVar('group_type', $format);
80  }
81 
82 }
83 
95 {
103  function &create($isNew = true)
104  {
105  $group = new XoopsGroup();
106  if ($isNew) {
107  $group->setNew();
108  }
109  return $group;
110  }
111 
118  function &get($id)
119  {
120  $id = intval($id);
121  $group = false;
122  if ($id > 0) {
123  $sql = 'SELECT * FROM ' . $this->db->prefix('groups') . ' WHERE groupid=' . $id;
124  if (!$result = $this->db->query($sql)) {
125  return $group;
126  }
127  $numrows = $this->db->getRowsNum($result);
128  if ($numrows == 1) {
129  $group = new XoopsGroup();
130  $group->assignVars($this->db->fetchArray($result));
131  }
132  }
133  return $group;
134  }
135 
142  function insert(&$group)
143  {
147  if (!is_a($group, 'xoopsgroup')) {
148  return false;
149  }
150  if (!$group->isDirty()) {
151  return true;
152  }
153  if (!$group->cleanVars()) {
154  return false;
155  }
156  foreach ($group->cleanVars as $k => $v) {
157  ${$k} = $v;
158  }
159  if ($group->isNew()) {
160  $groupid = $this->db->genId('group_groupid_seq');
161  $sql = sprintf("INSERT INTO %s (groupid, name, description, group_type) VALUES (%u, %s, %s, %s)", $this->db->prefix('groups'), $groupid, $this->db->quoteString($name), $this->db->quoteString($description), $this->db->quoteString($group_type));
162  } else {
163  $sql = sprintf("UPDATE %s SET name = %s, description = %s, group_type = %s WHERE groupid = %u", $this->db->prefix('groups'), $this->db->quoteString($name), $this->db->quoteString($description), $this->db->quoteString($group_type), $groupid);
164  }
165  if (!$result = $this->db->query($sql)) {
166  return false;
167  }
168  if (empty($groupid)) {
169  $groupid = $this->db->getInsertId();
170  }
171  $group->assignVar('groupid', $groupid);
172  return true;
173  }
174 
181  function delete(&$group)
182  {
186  if (!is_a($group, 'xoopsgroup')) {
187  return false;
188  }
189  $sql = sprintf("DELETE FROM %s WHERE groupid = %u", $this->db->prefix('groups'), $group->getVar('groupid'));
190  if (!$result = $this->db->query($sql)) {
191  return false;
192  }
193  return true;
194  }
195 
203  function getObjects($criteria = null, $id_as_key = false)
204  {
205  $ret = array();
206  $limit = $start = 0;
207  $sql = 'SELECT * FROM ' . $this->db->prefix('groups');
208  if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
209  $sql .= ' ' . $criteria->renderWhere();
210  $limit = $criteria->getLimit();
211  $start = $criteria->getStart();
212  }
213  $result = $this->db->query($sql, $limit, $start);
214  if (!$result) {
215  return $ret;
216  }
217  while ($myrow = $this->db->fetchArray($result)) {
218  $group = new XoopsGroup();
219  $group->assignVars($myrow);
220  if (!$id_as_key) {
221  $ret[] =& $group;
222  } else {
223  $ret[$myrow['groupid']] = & $group;
224  }
225  unset($group);
226  }
227  return $ret;
228  }
229 }
230 
239 {
243  function XoopsMembership()
244  {
245  $this->XoopsObject();
246  $this->initVar('linkid', XOBJ_DTYPE_INT, null, false);
247  $this->initVar('groupid', XOBJ_DTYPE_INT, null, false);
248  $this->initVar('uid', XOBJ_DTYPE_INT, null, false);
249  }
250 }
251 
263 {
270  function &create($isNew = true)
271  {
272  $mship = new XoopsMembership();
273  if ($isNew) {
274  $mship->setNew();
275  }
276  return $mship;
277  }
278 
285  function &get($id)
286  {
287  $id = intval($id);
288  $mship = false;
289  if ($id > 0) {
290  $sql = 'SELECT * FROM ' . $this->db->prefix('groups_users_link') . ' WHERE linkid=' . $id;
291  if (!$result = $this->db->query($sql)) {
292  return $mship;
293  }
294  $numrows = $this->db->getRowsNum($result);
295  if ($numrows == 1) {
296  $mship = new XoopsMembership();
297  $mship->assignVars($this->db->fetchArray($result));
298  }
299  }
300  return $mship;
301  }
302 
309  function insert(&$mship)
310  {
314  if (!is_a($mship, 'xoopsmembership')) {
315  return false;
316  }
317  if (!$mship->isDirty()) {
318  return true;
319  }
320  if (!$mship->cleanVars()) {
321  return false;
322  }
323  foreach ($mship->cleanVars as $k => $v) {
324  ${$k} = $v;
325  }
326  if ($mship->isNew()) {
327  $linkid = $this->db->genId('groups_users_link_linkid_seq');
328  $sql = sprintf("INSERT INTO %s (linkid, groupid, uid) VALUES (%u, %u, %u)", $this->db->prefix('groups_users_link'), $linkid, $groupid, $uid);
329  } else {
330  $sql = sprintf("UPDATE %s SET groupid = %u, uid = %u WHERE linkid = %u", $this->db->prefix('groups_users_link'), $groupid, $uid, $linkid);
331  }
332  if (!$result = $this->db->query($sql)) {
333  return false;
334  }
335  if (empty($linkid)) {
336  $linkid = $this->db->getInsertId();
337  }
338  $mship->assignVar('linkid', $linkid);
339  return true;
340  }
341 
348  function delete(&$mship)
349  {
353  if (!is_a($mship, 'xoopsmembership')) {
354  return false;
355  }
356 
357  $sql = sprintf("DELETE FROM %s WHERE linkid = %u", $this->db->prefix('groups_users_link'), $groupm->getVar('linkid'));
358  if (!$result = $this->db->query($sql)) {
359  return false;
360  }
361  return true;
362  }
363 
371  function getObjects($criteria = null, $id_as_key = false)
372  {
373  $ret = array();
374  $limit = $start = 0;
375  $sql = 'SELECT * FROM ' . $this->db->prefix('groups_users_link');
376  if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
377  $sql .= ' ' . $criteria->renderWhere();
378  $limit = $criteria->getLimit();
379  $start = $criteria->getStart();
380  }
381  $result = $this->db->query($sql, $limit, $start);
382  if (! $result) {
383  return $ret;
384  }
385  while ($myrow = $this->db->fetchArray($result)) {
386  $mship = new XoopsMembership();
387  $mship->assignVars($myrow);
388  if (!$id_as_key) {
389  $ret[] =& $mship;
390  } else {
391  $ret[$myrow['linkid']] = & $mship;
392  }
393  unset($mship);
394  }
395  return $ret;
396  }
397 
404  function getCount($criteria = null)
405  {
406  $sql = 'SELECT COUNT(*) FROM ' . $this->db->prefix('groups_users_link');
407  if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
408  $sql .= ' ' . $criteria->renderWhere();
409  }
410  $result = $this->db->query($sql);
411  if (!$result) {
412  return 0;
413  }
414  list ($count) = $this->db->fetchRow($result);
415  return $count;
416  }
417 
424  function deleteAll($criteria = null)
425  {
426  $sql = 'DELETE FROM ' . $this->db->prefix('groups_users_link');
427  if (isset($criteria) && is_subclass_of($criteria, 'criteriaelement')) {
428  $sql .= ' ' . $criteria->renderWhere();
429  }
430  if (!$result = $this->db->query($sql)) {
431  return false;
432  }
433  return true;
434  }
435 
445  {
446  $ret = array();
447  $sql = 'SELECT groupid FROM ' . $this->db->prefix('groups_users_link') . ' WHERE uid=' . intval($uid);
448  $result = $this->db->query($sql);
449  if (!$result) {
450  return $ret;
451  }
452  while ($myrow = $this->db->fetchArray($result)) {
453  $ret[] = $myrow['groupid'];
454  }
455  return $ret;
456  }
457 
468  function getUsersByGroup($groupid, $limit = 0, $start = 0)
469  {
470  $ret = array();
471  $sql = 'SELECT uid FROM ' . $this->db->prefix('groups_users_link') . ' WHERE groupid=' . intval($groupid);
472  $result = $this->db->query($sql, $limit, $start);
473  if (!$result) {
474  return $ret;
475  }
476  while ($myrow = $this->db->fetchArray($result)) {
477  $ret[] = $myrow['uid'];
478  }
479  return $ret;
480  }
481 }
482 ?>