19 declare(strict_types=1);
33 $this->
setRowTemplate(
'tpl.calendar_shared_user_list_row.html',
'components/ILIAS/Calendar');
36 $this->
addColumn($this->
lng->txt(
'name'),
'last_firstname',
'60%');
37 $this->
addColumn($this->
lng->txt(
'login'),
'login',
'40%');
40 $this->
addMultiCommand(
'shareAssignEditable', $this->
lng->txt(
'cal_share_cal_editable'));
47 $this->user_ids = $a_user_ids;
50 protected function fillRow(array $a_set): void
52 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
54 $this->tpl->setVariable(
'LASTNAME', $a_set[
'lastname']);
55 $this->tpl->setVariable(
'FIRSTNAME', $a_set[
'firstname']);
56 $this->tpl->setVariable(
'LOGIN', $a_set[
'login']);
62 foreach ($this->user_ids as
$id) {
66 $tmp_data[
'id'] =
$id;
67 $tmp_data[
'lastname'] = $name[
'lastname'];
68 $tmp_data[
'firstname'] = $name[
'firstname'];
70 $tmp_data[
'last_firstname'] = $tmp_data[
'lastname'] . $tmp_data[
'firstname'] . $tmp_data[
'login'];
setUsers(array $a_user_ids)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _lookupName(int $a_user_id)
lookup user name
__construct(object $parent_obj, string $parent_cmd)
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)
addMultiCommand(string $a_cmd, string $a_text)
static _lookupLogin(int $a_user_id)
setPrefix(string $a_prefix)