67 public array
$enabled = array(
"table" =>
true,
77 "numinfo_header" =>
false,
86 "table" =>
"fullwidth" 95 bool $a_global_tpl =
true 99 $tpl = $DIC->ui()->mainTemplate();
100 $lng = $DIC->language();
102 $this->global_tpl = $a_global_tpl;
103 $this->header_vars = array();
104 $this->header_params = array();
105 $this->enabled[
"form"] =
true;
106 $this->action_buttons = array();
107 if ($this->global_tpl) {
110 $this->tpl =
new ilTemplate(
"tpl.table.html",
true,
true,
"components/ILIAS/Table");
116 $this->lang_support =
false;
137 $this->data = $a_data;
150 public function setTitle(
string $a_title,
string $a_icon =
"",
string $a_icon_alt =
""): void
152 $this->title = $a_title;
153 $this->icon = $a_icon;
154 $this->icon_alt = $a_icon_alt;
157 $this->enabled[
"icon"] =
false;
162 if (!$this->icon_alt) {
165 $this->enabled[
"icon"] =
true;
168 public function setHelp(
string $a_help_page,
string $a_help_icon,
string $a_help_icon_alt =
""): void
170 $this->help_page = $a_help_page;
171 $this->help_icon = $a_help_icon;
172 $this->help_icon_alt = $a_help_icon_alt;
174 if (!$this->help_icon_alt) {
181 $this->header_names = $a_header_names;
182 $this->column_count = count($this->header_names);
190 public function setHeaderVars(array $a_header_vars, array $a_header_params = []): void
192 $this->header_vars = $a_header_vars;
193 $this->header_params = $a_header_params;
194 $this->link_params =
"";
195 foreach ($a_header_params as $key => $val) {
196 $this->link_params .= $key .
"=" . $val .
"&";
205 $this->column_width = $a_column_width;
210 $this->column_width[$a_column_number] = $a_column_width;
220 $this->max_count = $a_max_count;
222 if ($this->max_limit) {
230 public function setLimit(
int $a_limit = 0,
int $a_default_limit = 0): void
232 $this->limit = ($a_limit) ?: $a_default_limit;
234 if ($this->limit == 0) {
235 $this->max_limit =
true;
251 $this->prefix = $a_prefix ?:
"";
259 $this->offset = ($a_offset) ?: 0;
268 string $a_order_column =
"",
269 string $a_default_column =
"" 272 if (empty($a_order_column)) {
273 if (!empty($a_default_column)) {
274 $oc = array_search($a_default_column, $this->header_vars);
279 $oc = array_search($a_order_column, $this->header_vars);
282 $this->order_column = $oc ?:
"";
292 if (strtolower($a_order_direction) ==
"desc") {
293 $this->order_direction =
"desc";
294 $this->sort_order =
"asc";
296 $this->order_direction =
"asc";
297 $this->sort_order =
"desc";
308 string $a_previous =
"",
311 $this->footer_style = $a_style;
312 $this->footer_previous = $a_previous ?:
"<<<";
313 $this->footer_next = $a_next ?:
">>>";
319 public function enable(
string $a_module_name): void
321 if (!in_array($a_module_name, array_keys($this->enabled))) {
325 $this->enabled[$a_module_name] =
true;
331 public function disable(
string $a_module_name): void
333 if (!in_array($a_module_name, array_keys($this->enabled))) {
337 $this->enabled[$a_module_name] =
false;
343 if ($this->enabled[
"sort"]) {
346 $this->data = array_slice($this->data, $this->offset, $this->limit);
351 if ($this->enabled[
'table']) {
352 $this->tpl->setVariable(
"CSS_TABLE",
"table table-striped" );
356 if ($this->enabled[
"icon"] && $this->enabled[
"title"]) {
357 $this->tpl->setCurrentBlock(
"tbl_header_title_icon");
359 $this->tpl->setVariable(
"TBL_TITLE_IMG_ALT", $this->icon_alt);
360 $this->tpl->parseCurrentBlock();
363 if ($this->enabled[
"help"] && $this->enabled[
"title"]) {
364 $this->tpl->setCurrentBlock(
"tbl_header_title_help");
366 $this->tpl->setVariable(
"TBL_HELP_LINK", $this->help_page);
367 $this->tpl->setVariable(
"TBL_HELP_IMG_ALT", $this->help_icon_alt);
368 $this->tpl->parseCurrentBlock();
372 if ($this->enabled[
"title"]) {
373 $this->tpl->setCurrentBlock(
"tbl_header_title");
374 $this->tpl->setVariable(
"COLUMN_COUNT", $this->column_count);
375 $this->tpl->setVariable(
"TBL_TITLE", $this->title);
376 $this->tpl->parseCurrentBlock();
380 if ($this->enabled[
"header"]) {
389 if ($this->enabled[
"content"]) {
390 if ($this->enabled[
'auto_sort']) {
396 foreach ($this->data as $tbl_content_row) {
397 foreach ($tbl_content_row as $key => $tbl_content_cell) {
398 if (is_array($tbl_content_cell)) {
399 $this->tpl->setCurrentBlock(
"tbl_cell_subtitle");
400 $this->tpl->setVariable(
"TBL_CELL_SUBTITLE", $tbl_content_cell[1]);
401 $this->tpl->parseCurrentBlock();
402 $tbl_content_cell =
"<b>" . $tbl_content_cell[0] .
"</b>";
405 $this->tpl->setCurrentBlock(
"tbl_content_cell");
406 $this->tpl->setVariable(
"TBL_CONTENT_CELL", $tbl_content_cell);
407 $this->tpl->parseCurrentBlock();
410 $this->tpl->setCurrentBlock(
"tbl_content_row");
411 $this->tpl->setVariable(
"ROWCOLOR",
" ");
412 $this->tpl->parseCurrentBlock();
418 if ($this->enabled[
"select_all"]) {
420 $this->tpl->setVariable(
'SELECT_PREFIX', $this->prefix);
421 $this->tpl->setVariable(
"SELECT_ALL_TXT_SELECT_ALL", $this->
lng->txt(
"select_all"));
423 $this->tpl->setVariable(
"SELECT_ALL_FORM_NAME", $this->
getFormName());
424 if (!($this->enabled[
"numinfo"] && $this->enabled[
"footer"])) {
431 if ($this->enabled[
"numinfo_header"]) {
432 $start = $this->offset + 1;
435 if ($end > $this->max_count or $this->limit == 0) {
439 if ($this->lang_support) {
440 $numinfo =
"(" . $this->
lng->txt(
"dataset") .
" " . $start .
" - " . $end .
" " . strtolower($this->
lng->txt(
"of")) .
" " . $this->max_count .
")";
442 $numinfo =
"(Dataset " . $start .
" - " . $end .
" of " . $this->max_count .
")";
444 if ($this->max_count > 0) {
446 $this->tpl->setCurrentBlock(
"tbl_header_numinfo");
447 $this->tpl->setVariable(
"NUMINFO_HEADER", $numinfo);
448 $this->tpl->setVariable(
"COLUMN_COUNT_HEADER", $this->
getColumnCount());
449 $this->tpl->parseCurrentBlock();
453 if ($this->enabled[
"numinfo"] && $this->enabled[
"footer"]) {
454 $start = $this->offset + 1;
457 if ($end > $this->max_count or $this->limit == 0) {
461 if ($this->lang_support) {
462 $numinfo =
"(" . $this->
lng->txt(
"dataset") .
" " . $start .
" - " . $end .
" " . strtolower($this->
lng->txt(
"of")) .
" " . $this->max_count .
")";
464 $numinfo =
"(Dataset " . $start .
" - " . $end .
" of " . $this->max_count .
")";
466 if ($this->max_count > 0) {
468 $this->tpl->setCurrentBlock(
"tbl_footer_numinfo");
469 $this->tpl->setVariable(
"NUMINFO", $numinfo);
470 $this->tpl->parseCurrentBlock();
474 if ($this->enabled[
"linkbar"] && $this->enabled[
"footer"] && $this->limit != 0
475 && $this->max_count > 0) {
477 $this->prefix .
"sort_by" => $this->header_vars[$this->order_column],
478 $this->prefix .
"sort_order" => $this->order_direction
483 "link" => $this->footer_style,
484 "prev" => $this->footer_previous,
485 "next" => $this->footer_next,
488 $base = ($this->
getBase() ==
"")
492 $linkbar = $this->
linkbar($base, $this->max_count, $this->limit, $this->offset,
$params, $layout, $this->prefix);
493 $this->tpl->setCurrentBlock(
"tbl_footer_linkbar");
494 $this->tpl->setVariable(
"LINKBAR", $linkbar);
495 $this->tpl->parseCurrentBlock();
499 if ($this->enabled[
"footer"] && $this->max_count > 0) {
500 $this->tpl->setCurrentBlock(
"tbl_footer");
501 $this->tpl->setVariable(
"COLUMN_COUNT", $this->column_count);
502 $this->tpl->parseCurrentBlock();
506 if ($this->enabled[
"action"]) {
507 foreach ($this->action_buttons as $button) {
508 $this->tpl->setCurrentBlock(
"tbl_action_btn");
509 $this->tpl->setVariable(
"BTN_NAME", $button[
"name"]);
510 $this->tpl->setVariable(
"BTN_VALUE", $button[
"value"]);
511 $this->tpl->parseCurrentBlock();
513 $this->tpl->setCurrentBlock(
"tbl_action_row");
515 $this->tpl->setVariable(
"ALT_ARROW", $this->
lng->txt(
"arrow_downright.svg"));
517 $this->tpl->parseCurrentBlock();
520 if ($this->enabled[
"form"]) {
521 $this->tpl->touchBlock(
"tbl_form_footer");
524 if ($this->enabled[
'table']) {
525 $this->tpl->touchBlock(
"tbl_table_end");
528 if (!$this->global_tpl) {
529 return $this->tpl->get();
539 array $AParams = array(),
540 array $ALayout = array(),
547 $layout_prev =
"<<";
548 $layout_next =
">>";
551 if ((is_array($ALayout) && (count($ALayout) > 0))) {
552 if ($ALayout[
"link"]) {
553 $layout_link =
" class=\"" . $ALayout[
"link"] .
"\"";
556 if ($ALayout[
"prev"]) {
557 $layout_prev = $ALayout[
"prev"];
560 if ($ALayout[
"next"]) {
561 $layout_next = $ALayout[
"next"];
567 if ($AHits > $ALimit || $AOffset > 0) {
568 if (!empty($AParams)) {
569 foreach ($AParams as $key => $value) {
570 $params .= $key .
"=" . $value .
"&";
574 if (strpos($AScript,
'&')) {
575 $link = $AScript .
"&" .
$params . $prefix .
"offset=";
577 $link = $AScript .
"?" .
$params . $prefix .
"offset=";
582 $prevoffset = $AOffset - $ALimit;
583 if ($prevoffset < 0) {
586 $LinkBar .=
"<a" . $layout_link .
" href=\"" . $link . $prevoffset .
"\">" . $layout_prev .
" </a>";
590 $pages = intval($AHits / $ALimit);
593 if (($AHits % $ALimit)) {
601 for ($i = 1 ;$i <= $pages ; $i++) {
602 $newoffset = $ALimit * ($i - 1);
604 if ($newoffset == $AOffset) {
605 $LinkBar .=
"[" . $i .
"] ";
607 $LinkBar .=
'<a ' . $layout_link .
' href="' .
608 $link . $newoffset .
'">[' . $i .
']</a> ';
615 if (!(($AOffset / $ALimit) == ($pages - 1)) && ($pages != 1)) {
616 $newoffset = $AOffset + $ALimit;
617 $LinkBar .=
"<a" . $layout_link .
" href=\"" . $link . $newoffset .
"\"> " . $layout_next .
"</a>";
627 foreach ($this->header_names as $key => $tbl_header_cell) {
628 if (!$this->enabled[
"sort"]) {
629 $this->tpl->setCurrentBlock(
"tbl_header_no_link");
630 if ($this->column_width[$key]) {
631 $this->tpl->setVariable(
"TBL_COLUMN_WIDTH_NO_LINK",
" width=\"" . $this->column_width[$key] .
"\"");
633 $this->tpl->setVariable(
"TBL_HEADER_CELL_NO_LINK", $tbl_header_cell);
634 $this->tpl->parseCurrentBlock();
637 if (($key == $this->order_column) && ($this->order_direction !=
"")) {
638 if (strcmp($this->header_vars[$key],
"") != 0) {
639 $this->tpl->setCurrentBlock(
"tbl_order_image");
640 $this->tpl->parseCurrentBlock();
644 $this->tpl->setCurrentBlock(
"tbl_header_cell");
645 $this->tpl->setVariable(
"TBL_HEADER_CELL", $tbl_header_cell);
648 if ($this->column_width[$key]) {
649 $this->tpl->setVariable(
"TBL_COLUMN_WIDTH",
" width=\"" . $this->column_width[$key] .
"\"");
652 $lng_sort_column = (
$this->lang_support) ? $this->
lng->txt(
"sort_by_this_column") :
"Sort by this column";
653 $this->tpl->setVariable(
"TBL_ORDER_ALT", $lng_sort_column);
657 if ($key == $this->order_column) {
660 $lng_change_sort = (
$this->lang_support) ? $this->
lng->txt(
"change_sort_direction") :
"Change sort direction";
661 $this->tpl->setVariable(
"TBL_ORDER_ALT", $lng_change_sort);
665 $this->tpl->parseCurrentBlock();
668 $this->tpl->setCurrentBlock(
"tbl_header");
669 $this->tpl->parseCurrentBlock();
674 $this->tpl->setVariable(
"TBL_ORDER_LINK", basename(
$_SERVER[
"PHP_SELF"]) .
"?" . $this->link_params . $this->prefix .
"sort_by=" . $this->header_vars[$key] .
"&" . $this->prefix .
"sort_order=" . $order_dir .
"&" . $this->prefix .
"offset=" . $this->offset);
681 $this->styles[$a_element] = $a_style;
684 public function getStyle(
string $a_element): string
686 return $this->styles[$a_element];
694 $this->
base = $a_base;
712 $this->form_name = $a_name;
725 $this->select_all_checkbox = $a_select_all_checkbox;
730 $this->action_buttons = array();
735 $this->action_buttons[] = array(
737 "value" => $btn_value
setOffset(int $a_offset)
set dataset offset
static linkbar(string $AScript, int $AHits, int $ALimit, int $AOffset, array $AParams=array(), array $ALayout=array(), string $prefix='')
enable(string $a_module_name)
getStyle(string $a_element)
setSelectAllCheckbox(string $a_select_all_checkbox)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setHelp(string $a_help_page, string $a_help_icon, string $a_help_icon_alt="")
setLimit(int $a_limit=0, int $a_default_limit=0)
set max.
setColumnWidth(array $a_column_width)
set table column widths
setStyle(string $a_element, string $a_style)
setOrderDirection(string $a_order_direction)
addActionButton(string $btn_name, string $btn_value)
setTemplate(ilTemplate $a_tpl)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setOrderLink(string $key, string $order_dir)
setHeaderVars(array $a_header_vars, array $a_header_params=[])
getFormName()
get the name of the parent form
setOneColumnWidth(string $a_column_width, int $a_column_number)
setPrefix(string $a_prefix)
set prefix for sort and offset fields (if you have two or more tables on a page that you want to sort...
setData(array $a_data)
Set table data.
setFooter(string $a_style, string $a_previous="", string $a_next="")
setHeaderNames(array $a_header_names)
setFormName(string $a_name="cmd")
disable(string $a_module_name)
__construct(array $a_data=[], bool $a_global_tpl=true)
setOrderColumn(string $a_order_column="", string $a_default_column="")
string $select_all_checkbox
getSelectAllCheckbox()
get the name of the checkbox that should be toggled with a select all button
setMaxCount(int $a_max_count)
set max.
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)