19 declare(strict_types=1);
33 $this->rbacreview = $DIC->rbac()->review();
37 $this->
setRowTemplate(
'tpl.calendar_shared_role_list_row.html',
'components/ILIAS/Calendar');
39 $this->
addColumn($this->
lng->txt(
'objs_role'),
'title',
'75%');
40 $this->
addColumn($this->
lng->txt(
'assigned_members'),
'num',
'25%');
43 $this->
addMultiCommand(
'shareAssignRolesEditable', $this->
lng->txt(
'cal_share_cal_editable'));
48 public function setRoles(array $a_role_ids): void
50 $this->role_ids = $a_role_ids;
56 protected function fillRow(array $a_set): void
58 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
59 $this->tpl->setVariable(
'TITLE', $a_set[
'title']);
60 if (strlen($a_set[
'description'])) {
61 $this->tpl->setVariable(
'DESCRIPTION', $a_set[
'description']);
63 $this->tpl->setVariable(
'NUM_USERS', $a_set[
'num']);
68 $users = $roles = array();
69 foreach ($this->role_ids as
$id) {
72 $tmp_data[
'id'] =
$id;
73 $tmp_data[
'num'] = count($this->rbacreview->assignedUsers($id));
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _lookupTitle(int $obj_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static _lookupDescription(int $obj_id)
__construct(object $parent_obj, string $parent_cmd)
__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)
setPrefix(string $a_prefix)
setRoles(array $a_role_ids)