]>
src.bluestatic.org Git - bugdar.git/blob - includes/api_usergroup.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2004-2008 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 require_once ISSO
. '/Api.php';
23 require_once('./includes/functions_datastore.php');
29 * @copyright Copyright (c)2004 - 2008, Blue Static
33 class UsergroupAPI
extends BSApi
39 protected $fields = array(
40 'usergroupid' => array(TYPE_UINT
, REQ_AUTO
),
41 'title' => array(TYPE_STR
, REQ_YES
),
42 'displaytitle' => array(TYPE_STR
, REQ_NO
),
43 'permissions' => array(TYPE_UINT
, REQ_NO
)
50 protected $table = 'usergroup';
56 protected $prefix = TABLE_PREFIX
;
61 protected function post_insert()
69 protected function post_update()
78 protected function pre_delete()
80 if ($this->values
['usergroupid'] < 7)
82 throw new FieldException(T('You can\'t delete a default usergroup.'), 'usergroupid');
90 protected function post_delete()
92 BSApp
::$db->query("DELETE FROM " . TABLE_PREFIX
. "permission WHERE usergroupid = " . $this->values
['usergroupid']);
93 BSApp
::$db->query("DELETE FROM " . TABLE_PREFIX
. "bugfieldpermission WHERE usergroupid = " . $this->values
['usergroupid']);
94 BSApp
::$db->query("UPDATE " . TABLE_PREFIX
. "user SET usergroupid = 2 WHERE usergroupid = " . $this->values
['usergroupid']);
101 * Validate: usergroupid
103 protected function validate_usergroupid($field)
105 return $this->_verifyIsNotZero($field);
109 * Validate: usergroup
111 protected function validate_usergroup($field)
113 return $this->_verifyIsNotEmpty($field);