ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDashObjectsTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public function __construct(
24  object $a_parent_obj,
25  string $a_parent_cmd,
26  int $sub_id
27  ) {
28  global $DIC;
29 
30  $this->id = 'dash_obj_' . $sub_id;
31  $this->lng = $DIC->language();
32  $this->ctrl = $DIC->ctrl();
33 
34  parent::__construct($a_parent_obj, $a_parent_cmd);
35 
36  $this->setTitle($this->lng->txt(''));
37 
38  $this->addColumn('', '', '', true);
39 
40  $this->setEnableNumInfo(false);
41  $this->setEnableHeader(false);
42 
43  $this->setRowTemplate('tpl.dash_obj_row.html', 'components/ILIAS/Dashboard');
44 
45  $this->setLimit(9999);
46  }
47 
48  protected function fillRow(array $a_set): void
49  {
50  $tpl = $this->tpl;
51  $tpl->setVariable('ID', $a_set['ref_id']);
52  $tpl->setVariable('ICON', ilObject::_getIcon((int) $a_set['obj_id']));
53  $tpl->setVariable('TITLE', $a_set['title']);
54  }
55 }
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
__construct(object $a_parent_obj, string $a_parent_cmd, int $sub_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
setEnableNumInfo(bool $a_val)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
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)
setEnableHeader(bool $a_enableheader)