ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilSubItemSelectionTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("Services/Table/classes/class.ilTable2GUI.php");
5
15{
16 public function __construct(
17 $a_parent_obj,
18 $a_parent_cmd,
19 $a_ref_id,
20 $a_cmd = "createExportFile",
21 $a_cmd_txt = ""
22 ) {
23 global $ilCtrl, $lng;
24
25 parent::__construct($a_parent_obj, $a_parent_cmd);
26 $lng->loadLanguageModule("export");
27
28 if ($a_cmd_txt == "") {
29 $a_cmd_txt = $lng->txt("export_create_export_file");
30 }
31
32 $this->addColumn($lng->txt("export_resource"));
33 $this->addColumn($lng->txt("export_last_export"));
34 $this->addColumn($lng->txt("export_last_export_file"), "", "20%");
35 $this->addColumn($lng->txt("export_create_new_file"), "", "20%");
36 $this->addColumn($lng->txt("export_omit_resource"), "", "20%");
37 $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
38 $this->addCommandButton($a_cmd, $a_cmd_txt);
39 $this->setRowTemplate(
40 "tpl.sub_item_selection_row.html",
41 "Services/Export"
42 );
43 $this->setTitle($lng->txt("export_select_resources"));
44 include_once("./Services/Export/classes/class.ilExport.php");
46 $this->setLimit(99999);
47 }
48
53 protected function fillRow($a_set)
54 {
55 global $lng, $ilCtrl;
56
57 $now = new ilDateTime(time(), IL_CAL_UNIX);
58
59 $this->tpl->setVariable("IMG_ALT", $lng->txt("obj_" . $a_set["type"]));
60 $this->tpl->setVariable("IMG_SRC", ilObject::_getIcon(
61 $a_set["obj_id"],
62 "small",
63 $a_set["type"]
64 ));
65 $this->tpl->setVariable("VAL_TITLE", $a_set["title"]);
66 $this->tpl->setVariable("ID", $a_set["ref_id"]);
67 $this->tpl->setVariable("TXT_LAST_EXPORT_FILE", $lng->txt("export_last_file"));
68 $this->tpl->setVariable("TXT_OMIT", $lng->txt("export_omit"));
69 $this->tpl->setVariable("TXT_CREATE_NEW_EXPORT_FILE", $lng->txt("export_create"));
70 $preset = "CREATE";
71 if ($a_set["timestamp"] > 0) {
72 $last_export = new ilDateTime($a_set["timestamp"], IL_CAL_UNIX);
73 $this->tpl->setVariable(
74 "VAL_LAST_EXPORT",
76 );
77 if (ilDateTime::_equals($last_export, $now, IL_CAL_DAY)) {
78 $preset = "LAST_FILE";
79 }
80 }
81 $this->tpl->setVariable("SEL_" . $preset, ' checked="checked" ');
82 }
83}
An exception for terminatinating execution or to throw for unit testing.
const IL_CAL_UNIX
const IL_CAL_DAY
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date @access public.
@classDescription Date and time handling
static _equals(ilDateTime $start, ilDateTime $end, $a_compare_field='', $a_tz='')
Check if two date are equal.
static _getValidExportSubItems($a_ref_id)
Get a list of subitems of a repository resource, that implement the export.
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
fillRow($a_set)
Standard Version of Fill Row.
__construct( $a_parent_obj, $a_parent_cmd, $a_ref_id, $a_cmd="createExportFile", $a_cmd_txt="")
Class ilTable2GUI.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setData($a_data)
set table data @access public
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
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.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
global $ilCtrl
Definition: ilias.php:18