3 declare(strict_types=0);
38 public function __construct(
object $a_parent_obj,
string $a_parent_cmd,
int $ref_id)
42 $this->
access = $DIC->access();
43 $this->tree = $DIC->repositoryTree();
48 $this->
setId(
'tblcrsprtgrp_' . $ref_id);
50 $this->
lng->loadLanguageModule(
'grp');
53 $this->
setTitle($this->
lng->txt(
'crs_grp_assignments'));
56 $this->
addColumn($this->
lng->txt(
"name"),
"name",
'35%');
57 $this->
addColumn($this->
lng->txt(
"login"),
"login",
'35%');
58 $this->
addColumn($this->
lng->txt(
"crs_groups_nr"),
"groups_number");
63 $this->
setRowTemplate(
"tpl.crs_members_grp_row.html",
"Modules/Course");
69 $selectable_groups = [];
70 foreach ($this->groups as $ref_id => $something) {
71 if ($this->groups_rights[$ref_id][
'manage_members']) {
75 if ($selectable_groups !== []) {
80 $this->
lng->txt(
"crs_add_to_group")
93 $parent_node = $this->tree->getNodeData($this->ref_id);
94 $groups = $this->tree->getSubTree($parent_node,
true, [
'grp']);
95 if (is_array($groups) && count($groups)) {
96 $this->participants = $this->groups = $this->groups_rights = array();
97 foreach ($groups as $idx => $group_data) {
99 if ($group_data[
"parent"] != $this->ref_id && $this->tree->checkForParentType(
100 $group_data[
"ref_id"],
104 unset($groups[$idx]);
106 $this->groups[$group_data[
"ref_id"]] = $group_data[
"title"];
107 $this->groups_rights[$group_data[
"ref_id"]][
"manage_members"] = $this->
access->checkRbacOrPositionPermissionAccess(
110 $group_data[
'ref_id']
113 $this->groups_rights[$group_data[
"ref_id"]][
"edit_permission"] = $this->
access->checkAccess(
116 $group_data[
"ref_id"]
121 $members = $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
124 $group_data[
'ref_id'],
127 $admins = $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
130 $group_data[
'ref_id'],
134 $this->participants[$group_data[
"ref_id"]][
"members"] = $members;
135 $this->participants[$group_data[
"ref_id"]][
"admins"] = $admins;
147 $this->
filter[
"name"] = $item->getValue();
151 $item->setOptions(array(
"" => $this->
lng->txt(
"all")) + $this->groups);
152 $this->
filter[
"group"] = $item->getValue();
160 $members = $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
167 if ($members !== []) {
169 foreach ($members as $usr_id) {
171 $user_groups = array(
"members" => array(),
"admins" => array());
172 $user_groups_number = 0;
173 foreach (array_keys($this->participants) as $group_id) {
174 if (in_array($usr_id, $this->participants[$group_id][
"members"])) {
175 $user_groups[
"members"][$group_id] = $this->groups[$group_id];
176 $user_groups_number++;
177 } elseif (in_array($usr_id, $this->participants[$group_id][
"admins"])) {
178 $user_groups[
"admins"][$group_id] = $this->groups[$group_id];
179 $user_groups_number++;
183 if ((!$this->
filter[
"name"] || stristr(implode(
"",
$name), $this->
filter[
"name"])) &&
184 (!$this->
filter[
"group"] || array_key_exists($this->
filter[
"group"], $user_groups[
"members"]) ||
185 array_key_exists($this->
filter[
"group"], $user_groups[
"admins"]))) {
186 $usr_data[] = array(
"usr_id" => $usr_id,
187 "name" =>
$name[
"lastname"] .
", " .
$name[
"firstname"],
188 "groups" => $user_groups,
189 "groups_number" => $user_groups_number,
190 "login" => $name[
"login"]
202 protected function fillRow(array $a_set): void
204 $this->tpl->setVariable(
"VAL_ID", $a_set[
"usr_id"]);
206 $this->tpl->setVariable(
"TXT_USER", $a_set[
"name"]);
207 $this->tpl->setVariable(
"TXT_LOGIN", $a_set[
"login"]);
208 $this->tpl->setVariable(
"VAL_GROUP_NUMBER", $a_set[
"groups_number"]);
210 if (count($a_set[
"groups"]) !== 0) {
211 foreach ($a_set[
"groups"] as
$type => $groups) {
212 foreach ($groups as $grp_id =>
$title) {
214 (
$type ==
"admins" && $this->groups_rights[$grp_id][
"edit_permission"]) ||
215 (
$type ==
"members" && $this->groups_rights[$grp_id][
"manage_members"])
217 $this->tpl->setCurrentBlock(
"groups_remove");
219 $this->tpl->setVariable(
"TXT_GROUP_REMOVE", $this->
lng->txt(
"grp_unsubscribe"));
221 $this->
ctrl->setParameter($this->parent_obj,
"usr_id", $a_set[
"usr_id"]);
222 $this->
ctrl->setParameter($this->parent_obj,
"grp_id", $grp_id);
223 $this->tpl->setVariable(
225 $this->
ctrl->getLinkTarget($this->parent_obj,
"confirmremove")
227 $this->
ctrl->setParameter($this->parent_obj,
"grp_id",
"");
228 $this->
ctrl->setParameter($this->parent_obj,
"usr_id",
"");
230 $this->tpl->parseCurrentBlock();
233 $this->tpl->setCurrentBlock(
"groups");
234 $this->tpl->setVariable(
"TXT_GROUP_TITLE",
$title);
235 $this->tpl->parseCurrentBlock();
setFormAction(string $a_form_action, bool $a_multipart=false)
initGroups()
find groups in course, exclude groups in groups
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _lookupName(int $a_user_id)
lookup user name
__construct(object $a_parent_obj, string $a_parent_cmd, int $ref_id)
Constructor.
static _lookupObjId(int $ref_id)
addMultiItemSelectionButton(string $a_sel_var, array $a_options, string $a_cmd, string $a_text, string $a_default_selection='')
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
static _getInstanceByObjId(int $a_obj_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.