9 public function __construct()
12 if (isset($initVars)) {
13 $this->mVars = $initVars;
16 $this->initVar(
'groupid', XOBJ_DTYPE_INT, 0,
true);
17 $this->initVar(
'name', XOBJ_DTYPE_STRING,
'',
true, 50);
18 $this->initVar(
'description', XOBJ_DTYPE_TEXT,
'',
true);
19 $this->initVar(
'group_type', XOBJ_DTYPE_STRING,
'',
true, 10);
20 $initVars = $this->mVars;
23 public function getUserCount()
25 $handler = &xoops_gethandler(
'member');
26 return $handler->getUserCountByGroup($this->
get(
'groupid'));