ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTestExportTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Export/classes/class.ilExportTableGUI.php';
5 
15 {
16  protected $counter;
17  protected $confirmdelete;
18 
26  public function __construct($a_parent_obj, $a_parent_cmd, $a_exp_obj)
27  {
28  parent::__construct($a_parent_obj, $a_parent_cmd, $a_exp_obj);
29  }
30 
34  public function getExportFiles()
35  {
36  return array();
37  }
38 
42  protected function initColumns()
43  {
44  $this->addColumn($this->lng->txt(''), '', '1', true);
45  $this->addColumn($this->lng->txt('file'), 'file');
46  $this->addColumn($this->lng->txt('size'), 'size');
47  $this->addColumn($this->lng->txt('date'), 'timestamp');
48  }
49 
54  public function numericOrdering($column)
55  {
56  if(in_array($column, array('size', 'date')))
57  {
58  return true;
59  }
60 
61  return false;
62  }
63 
68  protected function getRowId(array $row)
69  {
70  return $row['file'];
71  }
72 }
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
getExportFiles()
Overwrite method because data is passed from outside.
__construct($a_parent_obj, $a_parent_cmd, $a_exp_obj)
Constructor.