24 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
49 $this->
addColumn($this->lng->txt(
"title"),
"title",
"80%");
50 $this->
addColumn($this->lng->txt(
"members"),
"members",
"20%");
52 $this->
setFormAction($ilCtrl->getFormAction($this->parent_obj));
53 $this->
setRowTemplate(
"tpl.rep_search_obj_result_row.html",
"Services/Search");
54 $this->
setTitle($this->lng->txt(
'search_results'));
56 $this->
setId(
"group_table");
59 $this->
enable(
'select_all');
72 $this->tpl->setVariable(
'VAL_ID',
$row[
'id']);
73 $this->tpl->setVariable(
'VAL_TITLE',
$row[
'title']);
74 if(strlen(
$row[
'desc']))
76 $this->tpl->setVariable(
'VAL_DESC',
$row[
'desc']);
78 $this->tpl->setVariable(
'VAL_MEMBER',
$row[
'member']);
90 foreach($a_ids as $object_id)
97 $row[
'id'] = $object_id;
102 include_once
'./Modules/Group/classes/class.ilGroupParticipants.php';
104 $row[
'member'] = $part->getCountParticipants();
108 include_once
'./Modules/Course/classes/class.ilCourseParticipants.php';
110 $row[
'member'] = $part->getCountParticipants();
115 $row[
'member'] = count($rbacreview->assignedUsers($object_id));