ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilExportTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once('./Services/Table/classes/class.ilTable2GUI.php');
5 
15 {
16  protected $custom_columns = array();
17  protected $formats = array();
18 
22  function __construct($a_parent_obj, $a_parent_cmd, $a_exp_obj)
23  {
24  global $ilCtrl, $lng, $ilAccess, $lng;
25 
26  $this->obj = $a_exp_obj;
27 
28  parent::__construct($a_parent_obj, $a_parent_cmd);
29  $this->setData($this->getExportFiles());
30  $this->setTitle($lng->txt('exp_export_files'));
31 
32  $this->initColumns();
33 
34  $this->setDefaultOrderField('timestamp');
35  $this->setDefaultOrderDirection('desc');
36 
37  $this->setEnableHeader(true);
38  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
39  $this->setRowTemplate('tpl.export_table_row.html', 'Services/Export');
40  //$this->disable('footer');
41  //$this->setEnableTitle(true);
42 
43  $this->addMultiCommand('download', $lng->txt('download'));
44  $this->addMultiCommand('confirmDeletion', $lng->txt('delete'));
45  }
46 
50  protected function initColumns()
51  {
52  $this->addColumn($this->lng->txt(''), '', '1', true);
53  $this->addColumn($this->lng->txt('type'), 'type');
54  $this->addColumn($this->lng->txt('file'), 'file');
55  $this->addColumn($this->lng->txt('size'), 'size');
56  $this->addColumn($this->lng->txt('date'), 'timestamp');
57  }
58 
65  function addCustomColumn($a_txt, $a_obj, $a_func)
66  {
67  $this->addColumn($a_txt);
68  $this->custom_columns[] = array('txt' => $a_txt,
69  'obj' => $a_obj,
70  'func' => $a_func);
71  }
72 
79  function addCustomMultiCommand($a_txt, $a_cmd)
80  {
81  $this->addMultiCommand($a_cmd, $a_txt);
82  }
83 
90  function getCustomColumns()
91  {
92  return $this->custom_columns;
93  }
94 
98  function getExportFiles()
99  {
100  $types = array();
101  foreach ($this->parent_obj->getFormats() as $f)
102  {
103  $types[] = $f['key'];
104  $this->formats[$f['key']] = $f['txt'];
105  }
106  include_once('./Services/Export/classes/class.ilExport.php');
107  $files = ilExport::_getExportFiles($this->obj->getId(),
108  $types, $this->obj->getType());
109  return $files;
110  }
111 
115  protected function fillRow($a_set)
116  {
117  foreach($this->getCustomColumns() as $c)
118  {
119  $this->tpl->setCurrentBlock('custom');
120  $this->tpl->setVariable('VAL_CUSTOM', $c['obj']->$c['func']($a_set['type'], $a_set['file']).' ');
121  $this->tpl->parseCurrentBlock();
122  }
123  $this->tpl->setVariable('VAL_ID', $this->getRowId($a_set));
124 
125  $type = ($this->formats[$a_set['type']] != "")
126  ? $this->formats[$a_set['type']]
127  : $a_set['type'];
128  $this->tpl->setVariable('VAL_TYPE', $type);
129  $this->tpl->setVariable('VAL_FILE', $a_set['file']);
130  $this->tpl->setVariable('VAL_SIZE', $a_set['size']);
131  $this->tpl->setVariable('VAL_DATE', ilDatePresentation::formatDate(new ilDateTime($a_set['timestamp'], IL_CAL_UNIX)));
132  }
133 
138  protected function getRowId(array $row)
139  {
140  return $row['type'].':'.$row['file'];
141  }
142 }
__construct($a_parent_obj, $a_parent_cmd, $a_exp_obj)
Constructor.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
addCustomColumn($a_txt, $a_obj, $a_func)
Add custom column.
const IL_CAL_UNIX
addCustomMultiCommand($a_txt, $a_cmd)
Add custom multi command.
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Class ilTable2GUI.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
getCustomColumns()
Get custom columns.
_getExportFiles($a_obj_id, $a_export_types="", $a_obj_type="")
Get Export Files for a repository object.
addMultiCommand($a_cmd, $a_text)
Add Command button.
static formatDate(ilDateTime $date)
Format a date public.
Date and time handling
setRowTemplate($a_template, $a_template_dir="")
Set row template.
global $lng
Definition: privfeed.php:40
setFormAction($a_form_action)
Set Form action parameter.
setEnableHeader($a_enableheader)
Set Enable Header.
getExportFiles()
Get export files.