ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBannedUsersTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  public function __construct(ilChatroomObjectGUI $a_parent_obj, string $a_parent_cmd)
30  {
31  $this->setId('banned_users');
32 
33  parent::__construct($a_parent_obj, $a_parent_cmd);
34 
35  $this->setTitle($this->lng->txt('ban_table_title'));
36  $this->setExternalSegmentation(true);
37  $this->setExternalSorting(false);
38 
39  $this->addColumn('', '', '', true);
40  $this->addColumn($this->lng->txt('login'), 'login');
41  $this->addColumn($this->lng->txt('firstname'), 'firstname');
42  $this->addColumn($this->lng->txt('lastname'), 'lastname');
43  $this->addColumn($this->lng->txt('chtr_ban_ts_tbl_head'), 'timestamp');
44  $this->addColumn($this->lng->txt('chtr_ban_actor_tbl_head'), 'actor');
45 
46  $this->setSelectAllCheckbox('banned_user_id');
47  $this->setRowTemplate('tpl.banned_user_table_row.html', 'Modules/Chatroom');
48 
49  $this->addMultiCommand('ban-delete', $this->lng->txt('unban'));
50  }
51 
52  protected function fillRow(array $a_set): void
53  {
54  if (is_numeric($a_set['timestamp']) && $a_set['timestamp'] > 0) {
55  $a_set['timestamp'] = ilDatePresentation::formatDate(new ilDateTime($a_set['timestamp'], IL_CAL_UNIX));
56  }
57 
58  parent::fillRow($a_set);
59  }
60 }
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
const IL_CAL_UNIX
setId(string $a_val)
setExternalSorting(bool $a_val)
Class ilBannedUsersTableGUI.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(ilChatroomObjectGUI $a_parent_obj, string $a_parent_cmd)
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)
setExternalSegmentation(bool $a_val)