19 declare(strict_types=0);
52 $this->
access = $DIC->access();
53 $this->
user = $DIC->user();
56 $this->
lng->loadLanguageModule(
'crs');
60 $this->
addColumn($this->
lng->txt(
'name'),
'name',
'20%');
61 $this->
addColumn($this->
lng->txt(
'login'),
'login',
'25%');
63 if ($this->privacy->enabledCourseAccessTimes()) {
64 $this->
addColumn($this->
lng->txt(
'last_access'),
'access_time');
66 $this->
addColumn($this->
lng->txt(
'crs_passed'),
'passed');
67 $this->
addColumn($this->
lng->txt(
'crs_blocked'),
'blocked');
68 $this->
addColumn($this->
lng->txt(
'crs_mem_contact'),
'contact');
69 $this->
addColumn($this->
lng->txt(
'crs_notification'),
'notification');
74 $this->
setRowTemplate(
"tpl.edit_participants_row.html",
"components/ILIAS/Course");
82 $this->localCourseRoles = array();
83 foreach ($this->rep_object->getLocalCourseRoles(
false) as
$title => $role_id) {
90 protected function fillRow(array $a_set): void
92 $hasEditPermissionAccess =
94 $this->
access->checkAccess(
'edit_permission',
'', $this->rep_object->getRefId()) || $this->participants->isAdmin($this->user->getId())
97 $this->tpl->setVariable(
'VAL_ID', $a_set[
'usr_id']);
98 $this->tpl->setVariable(
'VAL_NAME', $a_set[
'lastname'] .
', ' . $a_set[
'firstname']);
100 $this->tpl->setVariable(
'VAL_LOGIN', $a_set[
'login']);
102 if ($this->privacy->enabledCourseAccessTimes()) {
103 $this->tpl->setVariable(
'VAL_ACCESS', $a_set[
'access_time']);
105 $this->tpl->setVariable(
'VAL_CONTACT_CHECKED', $a_set[
'contact'] ?
'checked="checked"' :
'');
106 $this->tpl->setVariable(
'VAL_NOTIFICATION_CHECKED', $a_set[
'notification'] ?
'checked="checked"' :
'');
107 $this->tpl->setVariable(
'VAL_PASSED_CHECKED', $a_set[
'passed'] ?
'checked="checked"' :
'');
108 $this->tpl->setVariable(
'VAL_BLOCKED_CHECKED', $a_set[
'blocked'] ?
'checked="checked"' :
'');
110 $this->tpl->setVariable(
'NUM_ROLES', count($this->participants->getRoles()));
112 $assigned = $this->participants->getAssignedRoles($a_set[
'usr_id']);
113 foreach ($this->localCourseRoles as $localizedTitle => $roleData) {
114 if ($hasEditPermissionAccess || substr($roleData[
'title'], 0, 12) !=
'il_crs_admin') {
115 $this->tpl->setCurrentBlock(
'roles');
116 $this->tpl->setVariable(
'ROLE_ID', $roleData[
'role_id']);
117 $this->tpl->setVariable(
'ROLE_NAME', $localizedTitle);
119 if (in_array($roleData[
'role_id'], $assigned)) {
120 $this->tpl->setVariable(
'ROLE_CHECKED',
'selected="selected"');
122 $this->tpl->parseCurrentBlock();
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
ilPrivacySettings $privacy
setFormName(string $a_name="")
__construct(object $a_parent_obj, ilObjCourse $rep_object)
static _getInstanceByObjId(int $a_obj_id)
Singleton class that stores all privacy settings.
static _getTranslation(string $a_role_title)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__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)
disable(string $a_module_name)
ilCourseParticipants $participants
array $localCourseRoles
Holds the local roles of the course object.