]>
src.bluestatic.org Git - bugdar.git/blob - includes/api_usergroup.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright ©2002-2007 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $GLOBALS['isso:callback']->load('api', null);
24 require_once('./includes/functions_datastore.php');
30 * @copyright Copyright ©2002 - 2007, Blue Static
35 class UsergroupAPI
extends API
43 'usergroupid' => array(TYPE_UINT
, REQ_AUTO
, 'verify_nozero'),
44 'title' => array(TYPE_STR
, REQ_YES
, 'verify_noempty'),
45 'displaytitle' => array(TYPE_STR
, REQ_NO
),
46 'permissions' => array(TYPE_UINT
, REQ_NO
)
54 var $table = 'usergroup';
61 var $prefix = TABLE_PREFIX
;
63 // ###################################################################
69 function post_insert()
74 // ###################################################################
80 function post_update()
86 // ###################################################################
94 if ($this->values
['usergroupid'] < 7)
96 return T('You can\'t delete a default usergroup.');
100 // ###################################################################
106 function post_delete()
108 $this->registry
->db
->query("DELETE FROM " . TABLE_PREFIX
. "permission WHERE usergroupid = " . $this->values
['usergroupid']);
109 $this->registry
->db
->query("DELETE FROM " . TABLE_PREFIX
. "bugfieldpermission WHERE usergroupid = " . $this->values
['usergroupid']);
110 $this->registry
->db
->query("UPDATE " . TABLE_PREFIX
. "user SET usergroupid = 2 WHERE usergroupid = " . $this->values
['usergroupid']);
117 /*=====================================================================*\
118 || ###################################################################
121 || ###################################################################
122 \*=====================================================================*/