32 $this->
setId(
'obj_table_' . $a_id);
36 $this->
lng->loadLanguageModule(
'user');
39 public function init(): void
41 $this->
setTitle($this->
lng->txt(
'clipboard_table_title'));
44 $this->
addColumn($this->
lng->txt(
'name'),
'name',
'70%');
45 $this->
addColumn($this->
lng->txt(
'login'),
'login',
'30%');
48 $this->
setRowTemplate(
'tpl.usr_clipboard_table_row.html',
'components/ILIAS/User');
54 $this->
lng->txt(
'add')
58 'removeFromClipboard',
59 $this->
lng->txt(
'clipboard_remove_btn')
69 protected function fillRow(array $a_set): void
71 $this->tpl->setVariable(
'VAL_POSTNAME',
'uids');
72 $this->tpl->setVariable(
'VAL_ID', $a_set[
'usr_id']);
73 $this->tpl->setVariable(
'VAL_NAME', $a_set[
'name']);
74 $this->tpl->setVariable(
'VAL_LOGIN', $a_set[
'login']);
80 foreach ($this->clipboard->getValidatedContent() as
$user_id) {
84 $row[
'name'] = ($name_arr[
'lastname'] .
', ' . $name_arr[
'firstname']);
89 $this->
setMaxCount(count($this->clipboard->getValidatedContent()));
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _lookupName(int $a_user_id)
lookup user name
ilUserClipboard $clipboard
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_id)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)
setOrderColumn(string $a_order_column="", string $a_default_column="")
static getInstance(int $a_usr_id)
setMaxCount(int $a_max_count)
set max.
static _lookupLogin(int $a_user_id)