4 require_once(
"Services/Table/classes/class.ilTableGUI.php");
123 public function __construct($a_parent_obj, $a_parent_cmd =
"", $a_template_context =
"")
127 $this->lng = $DIC->language();
128 $this->ctrl = $DIC->ctrl();
129 $lng = $DIC->language();
132 $this->unique_id = md5(uniqid());
133 $this->parent_obj = $a_parent_obj;
134 $this->parent_cmd = $a_parent_cmd;
135 $this->buttons = array();
136 $this->header_commands = array();
137 $this->multi = array();
138 $this->hidden_inputs = array();
140 $this->tpl =
new ilTemplate(
"tpl.table2.html",
true,
true,
"Services/Table");
142 $lng->loadLanguageModule(
'tbl');
144 if (!$a_template_context) {
145 $a_template_context = $this->
getId();
150 if (isset(
$_GET[$this->prefix .
"_xpt"])) {
151 $this->export_mode = (int)
$_GET[$this->prefix .
"_xpt"];
155 if (isset(
$_GET[$this->prefix .
"_tpl"])) {
172 $this->open_form_tag = $a_val;
192 $this->close_form_tag = $a_val;
213 if (isset($DIC[
"ilUser"])) {
217 if ($this->limit_determined) {
222 if (isset(
$_GET[$this->prefix .
"_trows"])) {
242 $this->limit_determined =
true;
260 if ($this->columns_determined) {
267 if ($old_sel !=
"") {
269 @unserialize($old_sel);
272 if (!is_array($sel_fields)) {
274 $sel_fields = array();
277 $this->selected_columns = array();
280 $this->selected_column[$k] =
false;
282 $new_column = ($sel_fields[$k] === null);
287 $this->selected_column[$k] =
true;
289 } elseif ($stored && !$new_column) {
290 $this->selected_column[$k] = $sel_fields[$k];
295 if (isset(
$c[
"default"]) &&
$c[
"default"]) {
296 $this->selected_column[$k] =
true;
304 $this->selected_column[$k] =
true;
309 if ($old_sel != serialize($this->selected_column) && $set) {
310 $this->
storeProperty(
"selfields", serialize($this->selected_column));
313 $this->columns_determined =
true;
324 return $this->selected_column[$a_col];
336 foreach ($this->selected_column as $k => $v) {
351 $next_class = $ilCtrl->getNextClass($this);
352 $cmd = $ilCtrl->getCmd();
354 switch ($next_class) {
355 case 'ilformpropertydispatchgui':
356 include_once
'./Services/Form/classes/class.ilFormPropertyDispatchGUI.php';
360 $form_prop_dispatch->setItem($item);
361 return $ilCtrl->forwardCommand($form_prop_dispatch);
373 if (!$this->nav_determined && !$a_in_determination) {
419 $this->top_anchor = $a_val;
439 $this->noentriestext = $a_text;
449 return $this->noentriestext;
459 $this->datatable = $a_val;
469 return $this->datatable;
479 $this->enabled[
"title"] = $a_enabletitle;
489 return $this->enabled[
"title"];
499 $this->enabled[
"header"] = $a_enableheader;
509 return $this->enabled[
"header"];
519 $this->num_info = $a_val;
529 return $this->num_info;
535 final public function setTitle($a_title, $a_icon = 0, $a_icon_alt = 0)
537 parent::setTitle($a_title, $a_icon, $a_icon_alt);
547 $this->description = $a_val;
557 return $this->description;
567 $this->order_field = $a_order_field;
572 return $this->order_field;
578 if (defined(
'DEVMODE') && DEVMODE &&
579 $this->enabled[
"header"] && $this->enabled[
"sort"] &&
580 $this->columns_determined && is_array($this->column) &&
583 $check = array_keys(array_shift($check));
584 foreach ($this->column as $col) {
585 if ($col[
"sort_field"] && !in_array($col[
"sort_field"], $check)) {
586 $invalid[] = $col[
"sort_field"];
601 $this->row_data = $a_data;
602 if (!is_array($this->row_data)) {
603 $this->row_data = [];
609 return $this->row_data;
614 if (is_array($this->row_data)) {
615 if (count($this->row_data) > 0) {
624 $this->prefix = $a_prefix;
638 $a_input_item->setParent($this);
640 $this->filters[] = $a_input_item;
642 $this->optional_filters[] = $a_input_item;
646 if ($this->restore_filter) {
647 if (array_key_exists($a_input_item->getFieldId(), $this->restore_filter_values ?? [])) {
648 $this->setFilterValue($a_input_item, $this->restore_filter_values[$a_input_item->getFieldId()]);
650 $this->setFilterValue($a_input_item, null);
668 $lng = $DIC->language();
671 $caption =
$lng->txt($id);
674 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
677 case self::FILTER_CHECKBOX:
681 case self::FILTER_SELECT:
682 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
686 case self::FILTER_DATE:
687 include_once(
"./Services/Form/classes/class.ilDateTimeInputGUI.php");
691 case self::FILTER_TEXT:
692 include_once(
"./Services/Form/classes/class.ilTextInputGUI.php");
694 $item->setMaxLength(64);
699 case self::FILTER_LANGUAGE:
700 $lng->loadLanguageModule(
"meta");
701 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
703 $options = array(
"" =>
$lng->txt(
"trac_all"));
704 foreach (
$lng->getInstalledLanguages() as $lang_key) {
705 $options[$lang_key] =
$lng->txt(
"meta_l_" . $lang_key);
707 $item->setOptions($options);
710 case self::FILTER_NUMBER_RANGE:
711 include_once(
"./Services/Form/classes/class.ilCombinationInputGUI.php");
712 include_once(
"./Services/Form/classes/class.ilNumberInputGUI.php");
715 $item->addCombinationItem(
"from", $combi_item,
$lng->txt(
"from"));
717 $item->addCombinationItem(
"to", $combi_item,
$lng->txt(
"to"));
719 $item->setMaxLength(7);
723 case self::FILTER_DATE_RANGE:
724 include_once(
"./Services/Form/classes/class.ilCombinationInputGUI.php");
725 include_once(
"./Services/Form/classes/class.ilDateTimeInputGUI.php");
728 $item->addCombinationItem(
"from", $combi_item,
$lng->txt(
"from"));
730 $item->addCombinationItem(
"to", $combi_item,
$lng->txt(
"to"));
734 case self::FILTER_DATETIME_RANGE:
735 include_once(
"./Services/Form/classes/class.ilCombinationInputGUI.php");
736 include_once(
"./Services/Form/classes/class.ilDateTimeInputGUI.php");
739 $combi_item->setShowTime(
true);
740 $item->addCombinationItem(
"from", $combi_item,
$lng->txt(
"from"));
742 $combi_item->setShowTime(
true);
743 $item->addCombinationItem(
"to", $combi_item,
$lng->txt(
"to"));
747 case self::FILTER_DURATION_RANGE:
748 $lng->loadLanguageModule(
"form");
749 include_once(
"./Services/Form/classes/class.ilCombinationInputGUI.php");
750 include_once(
"./Services/Form/classes/class.ilDurationInputGUI.php");
753 $combi_item->setShowMonths(
false);
754 $combi_item->setShowDays(
true);
755 $combi_item->setShowSeconds(
true);
756 $item->addCombinationItem(
"from", $combi_item,
$lng->txt(
"from"));
758 $combi_item->setShowMonths(
false);
759 $combi_item->setShowDays(
true);
760 $combi_item->setShowSeconds(
true);
761 $item->addCombinationItem(
"to", $combi_item,
$lng->txt(
"to"));
770 $item->readFromSession();
788 if ($item->getPostVar() == $a_post_var) {
793 if ($item->getPostVar() == $a_post_var) {
807 $this->filter_cols = $a_val;
827 $this->disable_filter_hiding = $a_val;
848 return $this->selected_filter[$a_col];
860 foreach ($this->selected_filter as $k => $v) {
876 if ($this->filters_determined) {
882 if ($old_sel !=
"") {
884 @unserialize($old_sel);
887 if (!is_array($sel_filters)) {
889 $sel_filters = array();
892 $this->selected_filter = array();
895 $k = $item->getPostVar();
897 $this->selected_filter[$k] =
false;
902 $this->selected_filter[$k] =
true;
904 $item->setValue(null);
905 $item->writeToSession();
908 $this->selected_filter[$k] = $sel_filters[$k];
912 if ($old_sel != serialize($this->selected_filter) && $set) {
913 $this->
storeProperty(
"selfilters", serialize($this->selected_filter));
916 $this->filters_determined =
true;
924 $this->custom_prev_next =
true;
925 $this->custom_prev = $a_prev_link;
926 $this->custom_next = $a_next_link;
937 $this->form_action = $a_form_action;
938 $this->form_multipart = (bool) $a_multipart;
948 return $this->form_action;
958 $this->formname = $a_formname;
968 return $this->formname;
1001 $this->display_as_block = $a_val;
1011 return $this->display_as_block;
1032 $this->select_all_checkbox = $a_select_all_checkbox;
1033 $this->select_all_on_top = $a_select_all_on_top;
1043 $this->ext_sort = $a_val;
1064 $this->filter_cmd = $a_val;
1065 $this->filter_cmd_txt = $a_caption;
1086 $this->reset_cmd = $a_val;
1087 $this->reset_cmd_txt = $a_caption;
1107 $this->ext_seg = $a_val;
1128 $this->row_template = $a_template;
1129 $this->row_template_dir = $a_template_dir;
1139 $this->defaultorderfield = $a_defaultorderfield;
1149 return $this->defaultorderfield;
1159 $this->defaultorderdirection = $a_defaultorderdirection;
1169 return $this->defaultorderdirection;
1178 $this->default_filter_visibility = $a_status;
1197 $this->buttons = array();
1206 public function addCommandButton($a_cmd, $a_text, $a_onclick =
'', $a_id =
"", $a_class = null)
1208 $this->buttons[] = array(
"cmd" => $a_cmd,
"text" => $a_text,
'onclick' => $a_onclick,
1209 "id" => $a_id,
"class" => $a_class);
1219 $this->buttons[] = $a_button;
1234 echo
"ilTabl2GUI->addSelectionButton() has been deprecated with 4.2. Please try to move the drop-down to ilToolbarGUI.";
1249 $this->mi_sel_buttons[] = array(
"sel_var" => $a_sel_var,
"options" => $a_options,
"selected" => $a_default_selection,
"cmd" => $a_cmd,
"text" => $a_text);
1263 $this->close_command = $a_link;
1274 $this->multi[] = array(
"cmd" => $a_cmd,
"text" => $a_text);
1285 $this->hidden_inputs[] = array(
"name" => $a_name,
"value" => $a_value);
1296 $this->header_commands[] = array(
"href" => $a_href,
"text" => $a_text,
1297 "target" => $a_target,
"img" => $a_img);
1307 $this->top_commands = $a_val;
1331 $a_is_checkbox_action_column =
false,
1334 $a_tooltip_with_html =
false 1336 $this->column[] = array(
1338 "sort_field" => $a_sort_field,
1339 "width" => $a_width,
1340 "is_checkbox_action_column" => $a_is_checkbox_action_column,
1341 "class" => $a_class,
1342 "tooltip" => $a_tooltip,
1343 "tooltip_html" => (
bool) $a_tooltip_with_html
1345 if ($a_sort_field !=
"") {
1346 $this->sortable_fields[] = $a_sort_field;
1348 $this->column_count = count($this->column);
1354 return $this->prefix .
"_table_nav";
1366 if (is_object(
$ilUser) &&
$ilUser->getPref(
"screen_reader_optimization")) {
1373 $ilCtrl->setParameter(
1376 urlencode($sort_field) .
":" . $order_dir .
":" . $this->offset
1378 $this->tpl->setVariable(
1380 $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd) . $hash
1384 $ilCtrl->setParameter(
1395 $allcolumnswithwidth =
true;
1396 foreach ((array) $this->column as $idx => $column) {
1397 if (!strlen($column[
"width"])) {
1398 $allcolumnswithwidth =
false;
1399 } elseif ($column[
"width"] ==
"1") {
1401 $this->column[$idx][
"width"] =
"1%";
1404 if ($allcolumnswithwidth) {
1405 foreach ((array) $this->column as $column) {
1406 $this->tpl->setCurrentBlock(
"tbl_colgroup_column");
1407 $width = (is_numeric($column[
"width"]))
1408 ? $column[
"width"] .
"px" 1410 $this->tpl->setVariable(
"COLGROUP_COLUMN_WIDTH",
" style=\"width:" . $width .
"\"");
1411 $this->tpl->parseCurrentBlock();
1415 foreach ((array) $this->column as $column) {
1418 if ($column[
"tooltip"] !=
"") {
1419 include_once(
"./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
1421 "thc_" . $this->
getId() .
"_" . $ccnt,
1426 !$column[
"tooltip_html"]
1430 if ($column[
'is_checkbox_action_column'] && $this->select_all_on_top) {
1431 $this->tpl->setCurrentBlock(
'tbl_header_top_select_all');
1432 $this->tpl->setVariable(
"HEAD_SELECT_ALL_TXT_SELECT_ALL",
$lng->txt(
"select_all"));
1434 $this->tpl->setVariable(
"HEAD_SELECT_ALL_FORM_NAME", $this->
getFormName());
1435 $this->tpl->setVariable(
"HEAD_CHECKBOXNAME",
"chb_select_all_" . $this->unique_id .
'_top');
1436 $this->tpl->parseCurrentBlock();
1440 !$this->enabled[
"sort"] ||
1441 $column[
"sort_field"] ==
"" &&
1442 !($column[
"is_checkbox_action_column"] && $this->select_all_on_top)
1444 $this->tpl->setCurrentBlock(
"tbl_header_no_link");
1445 if ($column[
"width"] !=
"") {
1446 $width = (is_numeric($column[
"width"]))
1447 ? $column[
"width"] .
"px" 1449 $this->tpl->setVariable(
"TBL_COLUMN_WIDTH_NO_LINK",
" style=\"width:" . $width .
"\"");
1451 if ($column[
"class"] !=
"") {
1452 $this->tpl->setVariable(
"TBL_COLUMN_CLASS_NO_LINK",
" class=\"" . $column[
"class"] .
"\"");
1454 if (!$column[
"is_checkbox_action_column"]) {
1455 $this->tpl->setVariable(
1456 "TBL_HEADER_CELL_NO_LINK",
1460 $this->tpl->setVariable(
1461 "TBL_HEADER_CELL_NO_LINK",
1465 $this->tpl->setVariable(
"HEAD_CELL_NL_ID",
"thc_" . $this->
getId() .
"_" . $ccnt);
1466 if ($column[
"class"] !=
"") {
1467 $this->tpl->setVariable(
"TBL_HEADER_CLASS",
" " . $column[
"class"]);
1469 $this->tpl->parseCurrentBlock();
1470 $this->tpl->touchBlock(
"tbl_header_th");
1473 if (($column[
"sort_field"] == $this->order_field) && ($this->order_direction !=
"")) {
1474 $this->tpl->setCurrentBlock(
"tbl_order_image");
1475 if ($this->order_direction ==
"asc") {
1476 $this->tpl->setVariable(
"ORDER_CLASS",
"glyphicon glyphicon-arrow-up");
1477 $this->tpl->setVariable(
"ORDER_TXT", $this->lng->txt(
"sorting_asc"));
1479 $this->tpl->setVariable(
"ORDER_CLASS",
"glyphicon glyphicon-arrow-down");
1480 $this->tpl->setVariable(
"ORDER_TXT", $this->lng->txt(
"sorting_desc"));
1482 $this->tpl->setVariable(
"IMG_ORDER_ALT", $this->lng->txt(
"change_sort_direction"));
1483 $this->tpl->parseCurrentBlock();
1486 $this->tpl->setCurrentBlock(
"tbl_header_cell");
1487 $this->tpl->setVariable(
"TBL_HEADER_CELL", $column[
"text"]);
1488 $this->tpl->setVariable(
"HEAD_CELL_ID",
"thc_" . $this->
getId() .
"_" . $ccnt);
1491 if ($column[
"width"] !=
"") {
1492 $width = (is_numeric($column[
"width"]))
1493 ? $column[
"width"] .
"px" 1495 $this->tpl->setVariable(
"TBL_COLUMN_WIDTH",
" style=\"width:" . $width .
"\"");
1497 if ($column[
"class"] !=
"") {
1498 $this->tpl->setVariable(
"TBL_COLUMN_CLASS",
" class=\"" . $column[
"class"] .
"\"");
1501 $lng_sort_column = $this->lng->txt(
"sort_by_this_column");
1502 $this->tpl->setVariable(
"TBL_ORDER_ALT", $lng_sort_column);
1506 if ($column[
"sort_field"] == $this->order_field) {
1507 $order_dir = $this->sort_order;
1509 if ($order_dir ===
"asc") {
1510 $lng_change_sort = $this->lng->txt(
"sort_ascending_long");
1512 $lng_change_sort = $this->lng->txt(
"sort_descending_long");
1514 $this->tpl->setVariable(
"TBL_ORDER_ALT", $lng_change_sort);
1517 if ($column[
"class"] !=
"") {
1518 $this->tpl->setVariable(
"TBL_HEADER_CLASS",
" " . $column[
"class"]);
1520 $this->
setOrderLink($column[
"sort_field"], $order_dir);
1521 $this->tpl->parseCurrentBlock();
1522 $this->tpl->touchBlock(
"tbl_header_th");
1525 $this->tpl->setCurrentBlock(
"tbl_header");
1526 $this->tpl->parseCurrentBlock();
1545 if (isset($DIC[
"ilUser"])) {
1549 if ($this->nav_determined) {
1567 if (in_array($order, $this->sortable_fields)) {
1578 $nav = explode(
":", $this->nav_value);
1584 if (!$a_omit_offset) {
1595 if (!$a_omit_offset) {
1596 $this->nav_determined =
true;
1623 if (isset($DIC[
"ilUser"])) {
1637 if (is_object($ilCtrl) && $this->
getId() ==
"") {
1645 if (is_object(
$ilUser) &&
$ilUser->getPref(
"screen_reader_optimization")) {
1649 if ((
bool) $this->form_multipart) {
1650 $this->tpl->touchBlock(
"form_multipart_bl");
1654 $this->tpl->touchBlock(
"pdfs");
1657 $this->tpl->setCurrentBlock(
"tbl_form_header");
1658 $this->tpl->setVariable(
"FORMACTION", $this->
getFormAction() . $hash);
1659 $this->tpl->setVariable(
"FORMNAME", $this->
getFormName());
1660 $this->tpl->parseCurrentBlock();
1664 $this->tpl->touchBlock(
"tbl_form_footer");
1668 if (!$this->enabled[
'content']) {
1678 $this->
setFooter(
"tblfooter", $this->lng->txt(
"previous"), $this->lng->txt(
"next"));
1704 $this->tpl->addBlockFile(
1707 $this->row_template,
1708 $this->row_template_dir
1711 foreach ($data as $set) {
1712 $this->tpl->setCurrentBlock(
"tbl_content");
1713 $this->css_row = ($this->css_row !=
"tblrow1")
1716 $this->tpl->setVariable(
"CSS_ROW", $this->css_row);
1719 $this->tpl->setCurrentBlock(
"tbl_content");
1720 $this->tpl->parseCurrentBlock();
1726 :
$lng->txt(
"no_items");
1728 $this->css_row = ($this->css_row !=
"tblrow1")
1732 $this->tpl->setCurrentBlock(
"tbl_no_entries");
1733 $this->tpl->setVariable(
'TBL_NO_ENTRY_CSS_ROW', $this->css_row);
1734 $this->tpl->setVariable(
'TBL_NO_ENTRY_COLUMN_COUNT', $this->column_count);
1735 $this->tpl->setVariable(
'TBL_NO_ENTRY_TEXT', trim($no_items_text));
1736 $this->tpl->parseCurrentBlock();
1772 $this->tpl->setVariable(
"CSS_TABLE", $this->
getStyle(
"table"));
1774 if ($this->
getId() !=
"") {
1775 $this->tpl->setVariable(
"ID",
'id="' . $this->
getId() .
'"');
1780 $this->tpl->setCurrentBlock(
"tbl_header_description");
1781 $this->tpl->setVariable(
"TBL_DESCRIPTION", $this->
getDescription());
1782 $this->tpl->parseCurrentBlock();
1790 $this->tpl->touchBlock(
"outer_start_1");
1791 $this->tpl->touchBlock(
"outer_end_1");
1793 $this->tpl->touchBlock(
"outer_start_2");
1794 $this->tpl->touchBlock(
"outer_end_2");
1798 if ($this->enabled[
"title"] && ($this->title !=
"" 1799 || $this->icon !=
"" || count($this->header_commands) > 0 ||
1800 $this->headerHTML !=
"" || $this->close_command !=
"")) {
1801 if ($this->enabled[
"icon"]) {
1802 $this->tpl->setCurrentBlock(
"tbl_header_title_icon");
1804 $this->tpl->setVariable(
"TBL_TITLE_IMG_ALT", $this->icon_alt);
1805 $this->tpl->parseCurrentBlock();
1809 foreach ($this->header_commands as $command) {
1810 if ($command[
"img"] !=
"") {
1811 $this->tpl->setCurrentBlock(
"tbl_header_img_link");
1812 if ($command[
"target"] !=
"") {
1813 $this->tpl->setVariable(
1815 'target="' . $command[
"target"] .
'"' 1818 $this->tpl->setVariable(
"ALT_IMG_LINK", $command[
"text"]);
1819 $this->tpl->setVariable(
"HREF_IMG_LINK", $command[
"href"]);
1820 $this->tpl->setVariable(
1824 $this->tpl->parseCurrentBlock();
1826 $this->tpl->setCurrentBlock(
"head_cmd");
1827 $this->tpl->setVariable(
"TXT_HEAD_CMD", $command[
"text"]);
1828 $this->tpl->setVariable(
"HREF_HEAD_CMD", $command[
"href"]);
1829 $this->tpl->parseCurrentBlock();
1834 if (isset($this->headerHTML)) {
1835 $this->tpl->setCurrentBlock(
"tbl_header_html");
1836 $this->tpl->setVariable(
"HEADER_HTML", $this->headerHTML);
1837 $this->tpl->parseCurrentBlock();
1841 if ($this->close_command !=
"") {
1842 $this->tpl->setCurrentBlock(
"tbl_header_img_link");
1843 $this->tpl->setVariable(
"ALT_IMG_LINK",
$lng->txt(
"close"));
1844 $this->tpl->setVariable(
"HREF_IMG_LINK", $this->close_command);
1845 $this->tpl->parseCurrentBlock();
1848 $this->tpl->setCurrentBlock(
"tbl_header_title");
1849 $this->tpl->setVariable(
"TBL_TITLE", $this->title);
1850 $this->tpl->setVariable(
"TOP_ANCHOR", $this->
getTopAnchor());
1852 $this->tpl->setVariable(
"BLK_CLASS",
"Block");
1854 $this->tpl->parseCurrentBlock();
1858 if ($this->enabled[
"header"]) {
1862 $this->tpl->touchBlock(
"tbl_table_end");
1864 return $this->tpl->get();
1875 $main_tpl = $DIC[
"tpl"];
1880 $main_tpl->addJavascript(
"./Services/Table/js/ServiceTable.js");
1882 if (count($filter) == 0 && count($opt_filter) == 0) {
1886 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
1892 if (count($filter) > 0) {
1893 foreach ($filter as $item) {
1895 $this->tpl->setCurrentBlock(
"filter_row");
1896 $this->tpl->parseCurrentBlock();
1899 $this->tpl->setCurrentBlock(
"filter_item");
1900 $this->tpl->setVariable(
1904 $this->tpl->setVariable(
1906 $item->getTableFilterLabelFor()
1908 $this->tpl->setVariable(
1910 $item->getTableFilterHTML()
1912 $this->tpl->parseCurrentBlock();
1918 if (count($opt_filter) > 0) {
1921 foreach ($opt_filter as $item) {
1924 $this->tpl->setCurrentBlock(
"filter_row");
1925 $this->tpl->parseCurrentBlock();
1928 $this->tpl->setCurrentBlock(
"filter_item");
1929 $this->tpl->setVariable(
1933 $this->tpl->setVariable(
1937 $this->tpl->setVariable(
1939 $item->getTableFilterHTML()
1941 $this->tpl->parseCurrentBlock();
1948 foreach ($opt_filter as $item) {
1949 $k = $item->getPostVar();
1950 $items[$k] = array(
"txt" => $item->getTitle(),
1954 include_once(
"./Services/UIComponent/CheckboxListOverlay/classes/class.ilCheckboxListOverlayGUI.php");
1956 $cb_over->setLinkTitle(
$lng->txt(
"optional_filters"));
1957 $cb_over->setItems($items);
1960 $cb_over->setFieldVar(
"tblff" . $this->
getId());
1961 $cb_over->setHiddenVar(
"tblfsf" . $this->
getId());
1963 $cb_over->setSelectionHeaderClass(
"ilTableMenuItem");
1964 $this->tpl->setCurrentBlock(
"filter_select");
1967 $this->tpl->setVariable(
"HIDDEN_CMD_APPLY", $this->filter_cmd);
1969 $this->tpl->setVariable(
"FILTER_SELECTOR", $cb_over->getHTML(
false));
1970 $this->tpl->parseCurrentBlock();
1974 if ($ccnt > 0 || count($opt_filter) > 0) {
1975 $this->tpl->setVariable(
"TXT_FILTER",
$lng->txt(
"filter"));
1980 $this->tpl->touchBlock(
"filter_empty_cell");
1983 $this->tpl->setCurrentBlock(
"filter_row");
1984 $this->tpl->parseCurrentBlock();
1986 $this->tpl->setCurrentBlock(
"filter_buttons");
1987 $this->tpl->setVariable(
"CMD_APPLY", $this->filter_cmd);
1988 $this->tpl->setVariable(
"TXT_APPLY", $this->filter_cmd_txt
1989 ? $this->filter_cmd_txt
1990 :
$lng->txt(
"apply_filter"));
1991 $this->tpl->setVariable(
"CMD_RESET", $this->reset_cmd);
1992 $this->tpl->setVariable(
"TXT_RESET", $this->reset_cmd_txt
1993 ? $this->reset_cmd_txt
1994 :
$lng->txt(
"reset_filter"));
1995 } elseif (count($opt_filter) > 0) {
1996 $this->tpl->setCurrentBlock(
"optional_filter_hint");
1997 $this->tpl->setVariable(
'TXT_OPT_HINT',
$lng->txt(
'optional_filter_hint'));
1998 $this->tpl->parseCurrentBlock();
2001 $this->tpl->setCurrentBlock(
"filter_section");
2002 $this->tpl->setVariable(
"FIL_ID", $this->
getId());
2003 $this->tpl->parseCurrentBlock();
2008 $this->tpl->setCurrentBlock(
"filter_hidden");
2009 $this->tpl->setVariable(
"FI_ID", $this->
getId());
2010 $this->tpl->parseCurrentBlock();
2023 if ($prop ===
'0' || $prop ===
'1') {
2024 return (
bool) $prop;
2039 if ($item === $a_element) {
2051 $advmd_record_gui = null;
2052 if (method_exists($this,
"getAdvMDRecordGUI")) {
2053 $advmd_record_gui = $this->getAdvMDRecordGUI();
2057 if ($advmd_record_gui &&
2062 if ($item->checkInput()) {
2063 $item->setValueByArray(
$_POST);
2064 $item->writeToSession();
2068 if ($advmd_record_gui &&
2073 if ($item->checkInput()) {
2074 $item->setValueByArray(
$_POST);
2075 $item->writeToSession();
2079 if ($advmd_record_gui) {
2080 $advmd_record_gui->importFilter();
2084 unset($_REQUEST[
"tbltplcrt"]);
2085 unset($_REQUEST[
"tbltpldel"]);
2098 foreach ($filter as $item) {
2099 if ($item->checkInput()) {
2101 $item->setValueByArray([]);
2102 $item->clearFromSession();
2105 foreach ($opt_filter as $item) {
2106 if ($item->checkInput()) {
2108 $item->setValueByArray([]);
2109 $item->clearFromSession();
2114 unset($_REQUEST[
"tbltplcrt"]);
2115 unset($_REQUEST[
"tbltpldel"]);
2126 foreach ($a_set as $key => $value) {
2127 $this->tpl->setVariable(
"VAL_" . strtoupper($key), $value);
2139 if (isset($DIC[
"ilUser"])) {
2150 $this->tpl->setCurrentBlock(
"select_all_checkbox");
2151 $this->tpl->setVariable(
"SELECT_ALL_TXT_SELECT_ALL",
$lng->txt(
"select_all"));
2153 $this->tpl->setVariable(
"SELECT_ALL_FORM_NAME", $this->
getFormName());
2154 $this->tpl->setVariable(
"CHECKBOXNAME",
"chb_select_all_" . $this->unique_id);
2155 $this->tpl->parseCurrentBlock();
2159 if ($this->enabled[
"numinfo"] && $this->enabled[
"footer"]) {
2160 $start = $this->offset + 1;
2166 if ($end > $this->max_count or $this->limit == 0) {
2170 if ($this->max_count > 0) {
2171 if ($this->lang_support) {
2172 $numinfo =
"(" . $start .
" - " . $end .
" " . strtolower($this->lng->txt(
"of")) .
" " . $this->max_count .
")";
2174 $numinfo =
"(" . $start .
" - " . $end .
" of " . $this->max_count .
")";
2177 if ($this->max_count > 0) {
2179 $this->tpl->setCurrentBlock(
"tbl_footer_numinfo");
2180 $this->tpl->setVariable(
"NUMINFO", $numinfo);
2181 $this->tpl->parseCurrentBlock();
2188 if ($this->enabled[
"linkbar"] && $this->enabled[
"footer"] && $this->limit != 0
2189 && $this->max_count > 0) {
2191 "link" => $this->footer_style,
2192 "prev" => $this->footer_previous,
2193 "next" => $this->footer_next,
2198 $this->tpl->setCurrentBlock(
"tbl_footer_linkbar");
2199 $this->tpl->setVariable(
"LINKBAR", $linkbar);
2200 $this->tpl->parseCurrentBlock();
2210 $items[$k] = array(
"txt" =>
$c[
"txt"],
2213 include_once(
"./Services/UIComponent/CheckboxListOverlay/classes/class.ilCheckboxListOverlayGUI.php");
2215 $cb_over->setLinkTitle(
$lng->txt(
"columns"));
2216 $cb_over->setItems($items);
2220 $cb_over->setFieldVar(
"tblfs" . $this->
getId());
2221 $cb_over->setHiddenVar(
"tblfsh" . $this->
getId());
2222 $cb_over->setSelectionHeaderClass(
"ilTableMenuItem");
2223 $column_selector = $cb_over->getHTML();
2229 if (isset($_REQUEST[
"tbltplcrt"]) && $_REQUEST[
"tbltplcrt"]) {
2231 ilUtil::sendSuccess(
$lng->txt(
"tbl_template_created"));
2233 } elseif (isset($_REQUEST[
"tbltpldel"]) && $_REQUEST[
"tbltpldel"]) {
2235 ilUtil::sendSuccess(
$lng->txt(
"tbl_template_deleted"));
2239 $create_id =
"template_create_overlay_" . $this->
getId();
2240 $delete_id =
"template_delete_overlay_" . $this->
getId();
2241 $list_id =
"template_stg_" . $this->
getId();
2243 include_once(
"./Services/Table/classes/class.ilTableTemplatesStorage.php");
2247 include_once(
"./Services/UIComponent/Overlay/classes/class.ilOverlayGUI.php");
2250 if (
sizeof($templates)) {
2252 $overlay->setTrigger($list_id .
"_delete");
2253 $overlay->setAnchor(
"ilAdvSelListAnchorElement_" . $list_id);
2254 $overlay->setAutoHide(
false);
2257 $lng->loadLanguageModule(
"form");
2258 $this->tpl->setCurrentBlock(
"template_editor_delete_item");
2259 $this->tpl->setVariable(
"TEMPLATE_DELETE_OPTION_VALUE",
"");
2260 $this->tpl->setVariable(
"TEMPLATE_DELETE_OPTION",
"- " .
$lng->txt(
"form_please_select") .
" -");
2261 $this->tpl->parseCurrentBlock();
2262 foreach ($templates as
$name) {
2263 $this->tpl->setVariable(
"TEMPLATE_DELETE_OPTION_VALUE", $name);
2264 $this->tpl->setVariable(
"TEMPLATE_DELETE_OPTION", $name);
2265 $this->tpl->parseCurrentBlock();
2268 $this->tpl->setCurrentBlock(
"template_editor_delete");
2269 $this->tpl->setVariable(
"TEMPLATE_DELETE_ID", $delete_id);
2270 $this->tpl->setVariable(
"TXT_TEMPLATE_DELETE",
$lng->txt(
"tbl_template_delete"));
2271 $this->tpl->setVariable(
"TXT_TEMPLATE_DELETE_SUBMIT",
$lng->txt(
"delete"));
2272 $this->tpl->setVariable(
"TEMPLATE_DELETE_CMD", $this->parent_cmd);
2273 $this->tpl->parseCurrentBlock();
2279 $overlay->setTrigger($list_id .
"_create");
2280 $overlay->setAnchor(
"ilAdvSelListAnchorElement_" . $list_id);
2281 $overlay->setAutoHide(
false);
2284 $this->tpl->setCurrentBlock(
"template_editor");
2285 $this->tpl->setVariable(
"TEMPLATE_CREATE_ID", $create_id);
2286 $this->tpl->setVariable(
"TXT_TEMPLATE_CREATE",
$lng->txt(
"tbl_template_create"));
2287 $this->tpl->setVariable(
"TXT_TEMPLATE_CREATE_SUBMIT",
$lng->txt(
"save"));
2288 $this->tpl->setVariable(
"TEMPLATE_CREATE_CMD", $this->parent_cmd);
2289 $this->tpl->parseCurrentBlock();
2292 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
2294 $alist->setId($list_id);
2295 $alist->addItem(
$lng->txt(
"tbl_template_create"),
"create",
"#");
2296 if (
sizeof($templates)) {
2297 $alist->addItem(
$lng->txt(
"tbl_template_delete"),
"delete",
"#");
2298 foreach ($templates as
$name) {
2299 $ilCtrl->setParameter($this->parent_obj, $this->prefix .
"_tpl", urlencode($name));
2300 $alist->addItem($name, $name, $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd));
2301 $ilCtrl->setParameter($this->parent_obj, $this->prefix .
"_tpl",
"");
2304 $alist->setListTitle(
$lng->txt(
"tbl_templates"));
2306 $this->tpl->setVariable(
"TEMPLATE_SELECTOR",
" " . $alist->getHTML());
2310 $this->tpl->setCurrentBlock(
"tbl_footer");
2311 $this->tpl->setVariable(
"COLUMN_COUNT", $this->
getColumnCount());
2313 $this->tpl->setVariable(
"BLK_CLASS",
"Block");
2315 $this->tpl->parseCurrentBlock();
2318 if ($numinfo !=
"" || $linkbar !=
"" || $column_selector !=
"" ||
2319 count($this->filters) > 0 || count($this->optional_filters) > 0) {
2320 if (is_object(
$ilUser) && (count($this->filters) || count($this->optional_filters))) {
2321 $this->tpl->setCurrentBlock(
"filter_activation");
2322 $this->tpl->setVariable(
"TXT_ACTIVATE_FILTER",
$lng->txt(
"show_filter"));
2323 $this->tpl->setVariable(
"FILA_ID", $this->
getId());
2324 if ($this->
getId() !=
"") {
2325 $this->tpl->setVariable(
"SAVE_URLA",
"./ilias.php?baseClass=ilTablePropertiesStorage&table_id=" .
2326 $this->
getId() .
"&cmd=showFilter&user_id=" .
$ilUser->getId());
2328 $this->tpl->parseCurrentBlock();
2332 $this->tpl->setCurrentBlock(
"filter_deactivation");
2333 $this->tpl->setVariable(
"TXT_HIDE",
$lng->txt(
"hide_filter"));
2334 if ($this->
getId() !=
"") {
2335 $this->tpl->setVariable(
"SAVE_URL",
"./ilias.php?baseClass=ilTablePropertiesStorage&table_id=" .
2336 $this->
getId() .
"&cmd=hideFilter&user_id=" .
$ilUser->getId());
2337 $this->tpl->setVariable(
"FILD_ID", $this->
getId());
2339 $this->tpl->parseCurrentBlock();
2344 $this->tpl->setCurrentBlock(
"top_numinfo");
2345 $this->tpl->setVariable(
"NUMINFO", $numinfo);
2346 $this->tpl->parseCurrentBlock();
2350 $this->tpl->setCurrentBlock(
"top_linkbar");
2351 $this->tpl->setVariable(
"LINKBAR", $linkbar);
2352 $this->tpl->parseCurrentBlock();
2356 $this->tpl->setVariable(
"COLUMN_SELECTOR", $column_selector);
2362 !$this->rows_selector_off) {
2363 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
2366 $alist->setId(
"sellst_rows_" . $this->
getId());
2367 $hpp = (
$ilUser->getPref(
"hits_per_page") != 9999)
2368 ?
$ilUser->getPref(
"hits_per_page")
2369 :
$lng->txt(
"no_limit");
2371 $options = array(0 =>
$lng->txt(
"default") .
" (" . $hpp .
")",5 => 5, 10 => 10, 15 => 15, 20 => 20,
2372 30 => 30, 40 => 40, 50 => 50,
2373 100 => 100, 200 => 200, 400 => 400, 800 => 800);
2374 foreach ($options as $k => $v) {
2375 $ilCtrl->setParameter($this->parent_obj, $this->prefix .
"_trows", $k);
2376 $alist->addItem($v, $k, $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd));
2377 $ilCtrl->setParameter($this->parent_obj, $this->prefix .
"_trows",
"");
2380 $this->tpl->setVariable(
"ROW_SELECTOR", $alist->getHTML());
2384 if (
sizeof($this->export_formats) && $this->
dataExists()) {
2385 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
2388 $alist->setId(
"sellst_xpt");
2389 foreach ($this->export_formats as
$format => $caption_lng_id) {
2390 $ilCtrl->setParameter($this->parent_obj, $this->prefix .
"_xpt",
$format);
2391 $url = $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd);
2392 $ilCtrl->setParameter($this->parent_obj, $this->prefix .
"_xpt",
"");
2395 $alist->setListTitle(
$lng->txt(
"export"));
2396 $this->tpl->setVariable(
"EXPORT_SELECTOR",
" " . $alist->getHTML());
2399 $this->tpl->setCurrentBlock(
"top_navigation");
2400 $this->tpl->setVariable(
"COLUMN_COUNT", $this->
getColumnCount());
2402 $this->tpl->setVariable(
"BLK_CLASS",
"Block");
2404 $this->tpl->parseCurrentBlock();
2426 if (is_object(
$ilUser) &&
$ilUser->getPref(
"screen_reader_optimization")) {
2430 $link = $ilCtrl->getLinkTargetByClass(get_class($this->parent_obj), $this->parent_cmd) .
2435 $layout_prev =
$lng->txt(
"previous");
2436 $layout_next =
$lng->txt(
"next");
2439 if ($this->max_count > $this->
getLimit() || $this->custom_prev_next) {
2440 $sep =
"<span> | </span>";
2443 $pages = intval($this->max_count / $this->
getLimit());
2446 if (($this->max_count % $this->
getLimit())) {
2451 $offset_arr = array();
2452 for (
$i = 1 ;
$i <= $pages ;
$i++) {
2456 $offset_arr[$nav_value] =
$i;
2459 $sep =
"<span> </span>";
2462 if ($this->custom_prev_next && $this->custom_prev !=
"") {
2463 if ($LinkBar !=
"") {
2466 $LinkBar .=
"<a href=\"" . $this->custom_prev . $hash .
"\">" . $layout_prev .
"</a>";
2467 } elseif ($this->
getOffset() >= 1 && !$this->custom_prev_next) {
2468 if ($LinkBar !=
"") {
2472 $LinkBar .=
"<a href=\"" . $link . $prevoffset . $hash .
"\">" . $layout_prev .
"</a>";
2474 if ($LinkBar !=
"") {
2477 $LinkBar .=
'<span class="ilTableFootLight">' . $layout_prev .
"</span>";
2481 if ($a_num ==
"1") {
2482 $LinkBar .=
'<input type="hidden" name="' . $this->
getNavParameter() .
2486 $sep =
"<span> | </span>";
2489 if ($this->custom_prev_next && $this->custom_next !=
"") {
2490 if ($LinkBar !=
"") {
2493 $LinkBar .=
"<a href=\"" . $this->custom_next . $hash .
"\">" . $layout_next .
"</a>";
2494 } elseif (!(($this->
getOffset() / $this->
getLimit()) == ($pages - 1)) && ($pages != 1) &&
2495 !$this->custom_prev_next) {
2496 if ($LinkBar !=
"") {
2500 $LinkBar .=
"<a href=\"" . $link . $newoffset . $hash .
"\">" . $layout_next .
"</a>";
2502 if ($LinkBar !=
"") {
2505 $LinkBar .=
'<span class="ilTableFootLight">' . $layout_next .
"</span>";
2508 $sep =
"<span> </span>";
2510 if (count($offset_arr) && !$this->
getDisplayAsBlock() && !$this->custom_prev_next) {
2511 if ($LinkBar !=
"") {
2515 '<label for="tab_page_sel_' . $a_num .
'">' .
$lng->txt(
"page") .
'</label> ' .
2524 array(
"id" =>
"tab_page_sel_" . $a_num,
2525 "onchange" =>
"ilTablePageSelection(this, 'cmd[" . $this->parent_cmd .
"]')")
2539 $hidden_row =
false;
2540 if (count($this->hidden_inputs)) {
2541 foreach ($this->hidden_inputs as $hidden_input) {
2542 $this->tpl->setCurrentBlock(
"tbl_hidden_field");
2543 $this->tpl->setVariable(
"FIELD_NAME", $hidden_input[
"name"]);
2544 $this->tpl->setVariable(
"FIELD_VALUE", $hidden_input[
"value"]);
2545 $this->tpl->parseCurrentBlock();
2548 $this->tpl->setCurrentBlock(
"tbl_hidden_row");
2549 $this->tpl->parseCurrentBlock();
2561 $action_row =
false;
2565 if (count($this->sel_buttons) > 0) {
2566 foreach ($this->sel_buttons as $button) {
2567 $this->tpl->setCurrentBlock(
"sel_button");
2568 $this->tpl->setVariable(
2571 $button[
"selected"],
2578 $this->tpl->setVariable(
"SBTN_NAME", $button[
"cmd"]);
2579 $this->tpl->setVariable(
"SBTN_VALUE", $button[
"text"]);
2580 $this->tpl->parseCurrentBlock();
2583 $this->tpl->setCurrentBlock(
"sel_top_button");
2584 $this->tpl->setVariable(
2587 $button[
"selected"],
2594 $this->tpl->setVariable(
"SBTN_NAME", $button[
"cmd"]);
2595 $this->tpl->setVariable(
"SBTN_VALUE", $button[
"text"]);
2596 $this->tpl->parseCurrentBlock();
2602 $this->sel_buttons[] = array(
"options" => $a_options,
"cmd" => $a_cmd,
"text" => $a_text);
2605 if (count($this->buttons) > 0) {
2606 foreach ($this->buttons as $button) {
2607 if (!is_array($button)) {
2609 $this->tpl->setVariable(
'BUTTON_OBJ', $button->render());
2612 $button = clone $button;
2614 $this->tpl->setVariable(
'BUTTON_TOP_OBJ', $button->render());
2619 if (strlen($button[
'onclick'])) {
2620 $this->tpl->setCurrentBlock(
'cmdonclick');
2621 $this->tpl->setVariable(
'CMD_ONCLICK', $button[
'onclick']);
2622 $this->tpl->parseCurrentBlock();
2624 $this->tpl->setCurrentBlock(
"plain_button");
2625 if ($button[
"id"] !=
"") {
2626 $this->tpl->setVariable(
"PBID",
' id="' . $button[
"id"] .
'" ');
2628 if ($button[
"class"] !=
"") {
2629 $this->tpl->setVariable(
"PBBT_CLASS",
' ' . $button[
"class"]);
2631 $this->tpl->setVariable(
"PBTN_NAME", $button[
"cmd"]);
2632 $this->tpl->setVariable(
"PBTN_VALUE", $button[
"text"]);
2633 $this->tpl->parseCurrentBlock();
2636 if (strlen($button[
'onclick'])) {
2637 $this->tpl->setCurrentBlock(
'top_cmdonclick');
2638 $this->tpl->setVariable(
'CMD_ONCLICK', $button[
'onclick']);
2639 $this->tpl->parseCurrentBlock();
2641 $this->tpl->setCurrentBlock(
"plain_top_button");
2642 $this->tpl->setVariable(
"PBTN_NAME", $button[
"cmd"]);
2643 $this->tpl->setVariable(
"PBTN_VALUE", $button[
"text"]);
2644 if ($button[
"class"] !=
"") {
2645 $this->tpl->setVariable(
"PBBT_CLASS",
' ' . $button[
"class"]);
2647 $this->tpl->parseCurrentBlock();
2656 if (count($this->mi_sel_buttons)) {
2657 foreach ($this->mi_sel_buttons as $button) {
2658 $this->tpl->setCurrentBlock(
"mi_sel_button");
2659 $this->tpl->setVariable(
2662 $button[
"selected"],
2669 $this->tpl->setVariable(
"MI_BTN_NAME", $button[
"cmd"]);
2670 $this->tpl->setVariable(
"MI_BTN_VALUE", $button[
"text"]);
2671 $this->tpl->parseCurrentBlock();
2674 $this->tpl->setCurrentBlock(
"mi_top_sel_button");
2675 $this->tpl->setVariable(
2678 $button[
"selected"],
2679 $button[
"sel_var"] .
"_2",
2685 $this->tpl->setVariable(
"MI_BTN_NAME", $button[
"cmd"]);
2686 $this->tpl->setVariable(
"MI_BTN_VALUE", $button[
"text"]);
2687 $this->tpl->parseCurrentBlock();
2695 if (count($this->multi) > 1 && $this->
dataExists()) {
2696 if ($this->enable_command_for_all && $this->max_count <= self::getAllCommandLimit()) {
2697 $this->tpl->setCurrentBlock(
"tbl_cmd_select_all");
2698 $this->tpl->setVariable(
"TXT_SELECT_CMD_ALL",
$lng->txt(
"all_objects"));
2699 $this->tpl->parseCurrentBlock();
2702 $this->tpl->setCurrentBlock(
"tbl_cmd_select");
2704 foreach ($this->multi as $mc) {
2705 $sel[$mc[
"cmd"]] = $mc[
"text"];
2707 $this->tpl->setVariable(
2711 $this->tpl->setVariable(
"TXT_EXECUTE",
$lng->txt(
"execute"));
2712 $this->tpl->parseCurrentBlock();
2717 if ($this->enable_command_for_all && $this->max_count <= self::getAllCommandLimit()) {
2718 $this->tpl->setCurrentBlock(
"tbl_top_cmd_select_all");
2719 $this->tpl->setVariable(
"TXT_SELECT_CMD_ALL",
$lng->txt(
"all_objects"));
2720 $this->tpl->parseCurrentBlock();
2723 $this->tpl->setCurrentBlock(
"tbl_top_cmd_select");
2725 foreach ($this->multi as $mc) {
2726 $sel[$mc[
"cmd"]] = $mc[
"text"];
2728 $this->tpl->setVariable(
2732 $this->tpl->setVariable(
"TXT_EXECUTE",
$lng->txt(
"execute"));
2733 $this->tpl->parseCurrentBlock();
2735 } elseif (count($this->multi) == 1 && $this->
dataExists()) {
2736 $this->tpl->setCurrentBlock(
"tbl_single_cmd");
2738 foreach ($this->multi as $mc) {
2742 $this->tpl->setVariable(
"TXT_SINGLE_CMD",
$txt);
2743 $this->tpl->setVariable(
"SINGLE_CMD", $cmd);
2744 $this->tpl->parseCurrentBlock();
2749 $this->tpl->setCurrentBlock(
"tbl_top_single_cmd");
2751 foreach ($this->multi as $mc) {
2755 $this->tpl->setVariable(
"TXT_SINGLE_CMD",
$txt);
2756 $this->tpl->setVariable(
"SINGLE_CMD", $cmd);
2757 $this->tpl->parseCurrentBlock();
2762 $this->tpl->setCurrentBlock(
"tbl_action_img_arrow");
2764 $this->tpl->setVariable(
"ALT_ARROW",
$lng->txt(
"action"));
2765 $this->tpl->parseCurrentBlock();
2768 $this->tpl->setCurrentBlock(
"tbl_top_action_img_arrow");
2770 $this->tpl->setVariable(
"ALT_ARROW",
$lng->txt(
"action"));
2771 $this->tpl->parseCurrentBlock();
2776 $this->tpl->setCurrentBlock(
"tbl_action_row");
2777 $this->tpl->parseCurrentBlock();
2779 $this->tpl->setCurrentBlock(
"tbl_top_action_row");
2780 $this->tpl->parseCurrentBlock();
2792 $this->headerHTML = $html;
2806 if (isset($DIC[
"ilUser"])) {
2811 include_once(
"./Services/Table/classes/class.ilTablePropertiesStorage.php");
2829 if (isset($DIC[
"ilUser"])) {
2834 include_once(
"./Services/Table/classes/class.ilTablePropertiesStorage.php");
2868 if ($this->filters) {
2869 foreach ($this->filters as $item) {
2873 if ($this->optional_filters &&
$result[
"selfilters"]) {
2874 foreach ($this->optional_filters as $item) {
2875 if (in_array($item->getFieldId(),
$result[
"selfilters"])) {
2892 if (method_exists($a_item,
"getChecked")) {
2893 return $a_item->getChecked();
2894 } elseif (method_exists($a_item,
"getValue")) {
2895 return $a_item->getValue();
2896 } elseif (method_exists($a_item,
"getDate")) {
2909 if (method_exists($a_item,
"setChecked")) {
2910 $a_item->setChecked($a_value);
2911 } elseif (method_exists($a_item,
"setValue")) {
2912 $a_item->setValue($a_value);
2913 } elseif (method_exists($a_item,
"setDate")) {
2927 $this->context = $id;
2948 $this->show_rows_selector = (bool) $a_value;
2968 $this->show_templates = (bool) $a_value;
2996 include_once(
"./Services/Table/classes/class.ilTableTemplatesStorage.php");
3000 if (is_array(
$data)) {
3001 foreach (
$data as $property => $value) {
3006 $data[
"filter_values"] = unserialize(
$data[
"filter_values"]);
3007 if (
$data[
"filter_values"]) {
3008 $this->restore_filter_values =
$data[
"filter_values"];
3011 $this->restore_filter =
true;
3033 include_once(
"./Services/Table/classes/class.ilTableTemplatesStorage.php");
3037 $state[
"filter_values"] = serialize($state[
"filter_values"]);
3038 $state[
"selfields"] = serialize($state[
"selfields"]);
3039 $state[
"selfilters"] = serialize($state[
"selfilters"]);
3062 include_once(
"./Services/Table/classes/class.ilTableTemplatesStorage.php");
3078 return parent::getLimit();
3089 return parent::getOffset();
3099 $this->export_formats = array();
3102 $valid = array(self::EXPORT_EXCEL =>
"tbl_export_excel",
3103 self::EXPORT_CSV =>
"tbl_export_csv");
3105 foreach ($formats as
$format) {
3106 if (array_key_exists($format,
$valid)) {
3118 $this->print_mode = (bool) $a_value;
3163 case self::EXPORT_EXCEL:
3164 include_once
"./Services/Excel/classes/class.ilExcel.php";
3166 $excel->addSheet($this->title
3168 : $this->lng->txt(
"export"));
3181 foreach ($this->row_data as $set) {
3194 case self::EXPORT_CSV:
3195 include_once
"./Services/Utilities/classes/class.ilCSVWriter.php";
3197 $csv->setSeparator(
";");
3202 foreach ($this->row_data as $set) {
3209 header(
"Content-type: text/comma-separated-values");
3210 header(
"Content-Disposition: attachment; filename=\"" .
$filename .
"\"");
3211 header(
"Expires: 0");
3212 header(
"Cache-Control: must-revalidate, post-check=0,pre-check=0");
3213 header(
"Pragma: public");
3214 echo $csv->getCSVString();
3216 file_put_contents(
$filename, $csv->getCSVString());
3248 foreach ($this->column as $column) {
3249 $title = strip_tags($column[
"text"]);
3268 foreach ($a_set as $value) {
3269 if (is_array($value)) {
3270 $value = implode(
', ', $value);
3272 $a_excel->
setCell($a_row, $col++, $value);
3294 foreach ($this->column as $column) {
3295 $title = strip_tags($column[
"text"]);
3297 $a_csv->addColumn(
$title);
3312 foreach ($a_set as $key => $value) {
3313 if (is_array($value)) {
3314 $value = implode(
', ', $value);
3316 $a_csv->addColumn(strip_tags($value));
3328 $this->enable_command_for_all = (bool) $a_value;
3340 $ilClientIniFile = $DIC[
"ilClientIniFile"];
3342 $limit = $ilClientIniFile->readVariable(
"system",
"TABLE_ACTION_ALL_LIMIT");
3344 $limit = self::ACTION_ALL_LIMIT;
3374 $this->prevent_double_submission = $a_val;
3387 public function setLimit($a_limit = 0, $a_default_limit = 0)
3389 parent::setLimit($a_limit, $a_default_limit);
3392 if ($a_limit == 9999 &&
3393 $this->limit_determined) {
3394 $this->rows_selector_off =
true;
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
setRowSelectorLabel($row_selector_label)
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
setDescription($a_val)
Set description.
getExternalSorting()
Get external sorting.
fillHeaderExcel(ilExcel $a_excel, &$a_row)
Excel Version of Fill Header.
prepareOutput()
Anything that must be done before HTML is generated.
setExternalSorting($a_val)
Set external sorting.
__construct($a_parent_obj, $a_parent_cmd="", $a_template_context="")
ilTable2GUI constructor.
getDefaultOrderField()
Get Default order field.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setExportFormats(array $formats)
Set available export formats.
addHiddenInput($a_name, $a_value)
Add Hidden Input field.
getTopAnchor()
Get top anchor.
getTopCommands()
Get top commands (display command buttons on top of table, too)
addCommandButtonInstance(ilButtonBase $a_button)
Add Command button instance.
getColumnCount()
Returns the column count based on the number of the header row columns public.
setDisplayAsBlock($a_val)
Set display as block.
getSelectAllCheckbox()
Get the name of the checkbox that should be toggled with a select all button.
getFilterCommand()
Get filter command.
getSelectableColumns()
Get selectable columns.
setOffset($a_offset)
set dataset offset public
setPrintMode($a_value=false)
Toogle print mode.
renderFilter()
Render Filter section.
fillRowExcel(ilExcel $a_excel, &$a_row, $a_set)
Excel Version of Fill Row.
$prevent_double_submission
setShowTemplates($a_value)
Toggle templates.
storeProperty($type, $value)
Store table property.
getIsDataTable()
Get is data table.
setEnableNumInfo($a_val)
Set enable num info.
getFilterValue(ilFormPropertyGUI $a_item)
Get current filter value.
setFilterCols($a_val)
Set filter columns.
setExternalSegmentation($a_val)
Set external segmentation.
determineSelectedColumns()
Determine selected columns.
exportData($format, $send=false)
Export and optionally send current table data.
resetOffset($a_in_determination=false)
Reset offset.
getFilterItemByPostVar($a_post_var)
addFilterItemByMetaType($id, $type=self::FILTER_TEXT, $a_optional=false, $caption=null)
Add filter by standard type.
static initConnection(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static setUseRelativeDates($a_status)
set use relative dates
setIsDataTable($a_val)
Set is data table.
getFormName()
Get Form name.
Saves (mostly asynchronously) user properties of tables (e.g.
setFooter($a_style, $a_previous=0, $a_next=0)
set order direction public
determineLimit()
Determine the limit.
getOpenFormTag()
Get open form tag.
setDefaultFilterVisiblity($a_status)
Set default filter visiblity.
deleteTemplate($a_name)
Delete template.
getParentCmd()
Get parent command.
getOrderDirection()
Get order direction.
getLinkbar($a_num)
Get previous/next linkbar.
setNoEntriesText($a_text)
Set text for an empty table.
fillFooter()
Fill footer row.
getParentObject()
Get parent object.
const FILTER_NUMBER_RANGE
getDescription()
Get description.
saveTemplate($a_name)
Save current state as template.
getDisplayAsBlock()
Get display as block.
addHeaderCommand($a_href, $a_text, $a_target="", $a_img="")
Add Header Command (Link) (Image needed for now)
Saves (mostly asynchronously) user properties of tables (e.g.
fillActionRow()
Fill Action Row.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
getShowRowsSelector()
Get rows-per-page selector state.
getDefaultOrderDirection()
Get Default order direction.
setOrderLink($sort_field, $order_dir)
getFilterElements($a_only_non_empty=true)
Get SQL conditions for current filter value(s)
getShowTemplates()
Get template state.
setOrderDirection($a_order_direction)
set order direction public
setOrderField($a_order_field)
set order column
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
const FILTER_DATETIME_RANGE
isFilterVisible()
Check if filter is visible: manually shown (session, db) or default value set.
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
getColumnCoord($a_col)
Get column "name" from number.
setBold($a_coords)
Set cell(s) to bold.
fillMetaCSV($a_csv)
Add meta information to csv export.
getDisableFilterHiding()
Get disable filter hiding.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
restoreTemplate($a_name)
Restore state from template.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
setDisableFilterHiding($a_val=true)
Set disable filter hiding.
const FILTER_DURATION_RANGE
numericOrdering($a_field)
Should this field be sorted numeric?
getExternalSegmentation()
Get external segmentation.
addMultiCommand($a_cmd, $a_text)
Add Command button.
static getAllCommandLimit()
Get maximum number of entries to enable actions for all.
This is a utility class for the yui overlays.
$default_filter_visibility
setCustomPreviousNext($a_prev_link, $a_next_link)
Set custom previous/next links.
setHeaderHTML($html)
set header html
User interface class for a checkbox list overlay.
getSelectedColumns()
Get selected columns.
setCell($a_row, $a_col, $a_value, $a_datatype=null)
Set cell value.
getFormAction()
Get Form action parameter.
isAdvMDFilter(ilAdvancedMDRecordGUI $a_gui, $a_element)
Check if filter element is based on adv md.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
getPreventDoubleSubmission()
Get prevent double submission.
getEnableHeader()
Get Enable Header.
SetFilterValue(ilFormPropertyGUI $a_item, $a_value)
Set current filter value.
setEnableAllCommand($a_value)
Enable actions for all entries in current result.
addSelectionButton($a_sel_var, $a_options, $a_cmd, $a_text, $a_default_selection='')
Add Selection List + Command button.
getEnableTitle()
Get Enable Title.
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
getNoEntriesText()
Get text for an empty table.
writeFilterToSession()
Write filter values to session.
executeCommand()
Execute command.
isColumnSelected($a_col)
Is given column selected?
isFilterSelected($a_col)
Is given filter selected?
render()
render table public
addMultiItemSelectionButton($a_sel_var, $a_options, $a_cmd, $a_text, $a_default_selection='')
Add Selection List + Command button for selected items.
getResetCommand()
Get reset filter command.
setContext($id)
Set context.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
determineSelectedFilters()
Determine selected filters.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
getEnableNumInfo()
Get enable num info.
getSelectedFilters()
Get selected filters.
static formSelect( $selected, $varname, $options, $multiple=false, $direct_text=false, $size="0", $style_class="", $attribs="", $disabled=false)
Builds a select form field with options and shows the selected option first.
getFilterCols()
Get filter columns.
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
getPrintMode()
Get print mode.
getCurrentState()
get current settings for order, limit, columns and filter
setOpenFormTag($a_val)
Set open form tag.
setEnableHeader($a_enableheader)
Set Enable Header.
loadProperty($type)
Load table property.
fillRow($a_set)
Standard Version of Fill Row.
setCloseCommand($a_link)
Add command for closing table.
fillHeaderCSV($a_csv)
CSV Version of Fill Header.
setMaxCount($a_max_count)
set max.
getCloseFormTag()
Get close form tag.
fillMetaExcel(ilExcel $a_excel, &$a_row)
Add meta information to excel export.
getExportMode()
Was export activated?
getFilterItems($a_optionals=false)
Get filter items.
setEnableTitle($a_enabletitle)
Set Enable Title.
getDefaultFilterVisibility()
Get default filter visibility.
resetFilter()
Reset filter.
setPreventDoubleSubmission($a_val)
Set prevent double submission.
setTopAnchor($a_val)
Set top anchor.
setCloseFormTag($a_val)
Set close form tag.
setLimit($a_limit=0, $a_default_limit=0)
fillRowCSV($a_csv, $a_set)
CSV Version of Fill Row.
setFilterCommand($a_val, $a_caption=null)
Set filter command.