3 declare(strict_types=1);
48 $this->grp_id = $a_grp_id;
49 $this->app_id = $a_app_id;
54 "tpl.ms_responsible_users_row.html",
60 $this->
ctrl->setParameter($a_parent_obj,
"app_id", $this->app_id);
63 $this->
setTitle($this->
lng->txt(
"cal_ms_users_responsible"));
65 "saveMilestoneResponsibleUsers",
66 $this->
lng->txt(
"cal_save_responsible_users")
75 $participants = array();
76 if ($this->app_id > 0) {
78 $resp_users =
$app->readResponsibleUsers();
79 foreach ($resp_users as $v) {
81 $participants[$v[
"user_id"]] = array_merge($n, array(
"type" =>
"non-member"));
82 $this->resp_users[] = $v[
"user_id"];
87 $admins = $part->getAdmins();
88 $members = $part->getMembers();
89 foreach ($members as $v) {
91 $participants[$v] = array_merge($n, array(
"type" =>
"member"));
93 foreach ($admins as $v) {
95 $participants[$v] = array_merge($n, array(
"type" =>
"admin"));
104 protected function fillRow(array $a_set): void
106 if (is_array($this->resp_users) && in_array($a_set[
"user_id"], $this->resp_users)) {
107 $this->tpl->setVariable(
"CHECKED",
' checked="checked" ');
109 $this->tpl->setVariable(
"USER_ID", $a_set[
"user_id"]);
110 $this->tpl->setVariable(
"TXT_FIRSTNAME", $a_set[
"firstname"]);
111 $this->tpl->setVariable(
"TXT_LASTNAME", $a_set[
"lastname"]);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setFormAction(string $a_form_action, bool $a_multipart=false)
static _lookupName(int $a_user_id)
lookup user name
fillRow(array $a_set)
Standard Version of Fill Row.
TableGUI class for selection of milestone responsibles.
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_grp_id, int $a_app_id)
setDefaultOrderField(string $a_defaultorderfield)
getParticipantsAndResponsibles()
Get participants and responsible users.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
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)
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)
addMultiCommand(string $a_cmd, string $a_text)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
static _lookupLogin(int $a_user_id)