ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.assFileUploadFileTableGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once('./Services/Table/classes/class.ilTable2GUI.php');
5
16{
17 // hey: prevPassSolutions - support file reuse with table
18 protected $postVar = '';
19 // hey.
20
28 public function __construct($a_parent_obj, $a_parent_cmd, $formname = 'test_output')
29 {
30 global $lng,$ilCtrl;
31
32 $this->lng = $lng;
33 $this->ctrl = $ilCtrl;
34
35 parent::__construct($a_parent_obj, $a_parent_cmd);
36
37 $this->setFormName($formname);
38 $this->setStyle('table', 'std');
39 $this->addColumn('','f','1%');
40 $this->addColumn($this->lng->txt('filename'),'filename', '70%');
41 $this->addColumn($this->lng->txt('date'),'date', '29%');
42 $this->setDisplayAsBlock(true);
43
44 // hey: prevPassSolutions - configure table with initCommand()
45 $this->setPrefix('deletefiles');
46 $this->setSelectAllCheckbox('deletefiles');
47 // hey.
48
49 $this->setRowTemplate("tpl.il_as_qpl_fileupload_file_row.html", "Modules/TestQuestionPool");
50
51 $this->disable('sort');
52 $this->disable('linkbar');
53 $this->enable('header');
54 // hey: prevPassSolutions - configure table with initCommand()
55 #$this->enable('select_all');
56 // hey.
57 }
58
59 // hey: prevPassSolutions - support file reuse with table
63 protected function hasPostVar()
64 {
65 return (bool)strlen($this->getPostVar());
66 }
67
71 public function getPostVar()
72 {
73 return $this->postVar;
74 }
75
79 public function setPostVar($postVar)
80 {
81 $this->postVar = $postVar;
82 }
83 // hey.
84
85 // hey: prevPassSolutions - support file reuse with table
87 {
88 if( count($this->getData()) )
89 {
90 $this->enable('select_all');
91
93 $this->setPrefix($postVar);
94 $this->setPostVar($postVar);
95
96 $commandButton->setCommand($this->parent_cmd);
97 $this->addCommandButtonInstance($commandButton);
98 }
99 }
100 // hey.
101
109 public function fillRow($a_set)
110 {
111 global $ilUser,$ilAccess;
112
113 $this->tpl->setVariable('VAL_ID', $a_set['solution_id']);
114 // hey: prevPassSolutions - support file reuse with table
115 $this->tpl->setVariable('VAL_FILE', $this->buildFileItemContent($a_set));
116
117 if( $this->hasPostVar() )
118 {
119 $this->tpl->setVariable('VAL_POSTVAR', $this->getPostVar());
120 }
121 // hey.
123 $this->tpl->setVariable('VAL_DATE', ilDatePresentation::formatDate(new ilDateTime($a_set["tstamp"],IL_CAL_UNIX)));
124 }
125
126 // hey: prevPassSolutions - support file reuse with table
130 protected function buildFileItemContent($a_set)
131 {
132 if( !isset($a_set['webpath']) || !strlen($a_set['webpath']) )
133 {
134 return ilUtil::prepareFormOutput($a_set['value2']);
135 }
136
137 $link = "<a href='{$a_set['webpath']}{$a_set['value1']}' target='_blank'>";
138 $link .= ilUtil::prepareFormOutput($a_set['value2']) . '</a>';
139
140 return $link;
141 }
142 // hey.
143}
An exception for terminatinating execution or to throw for unit testing.
const IL_CAL_UNIX
__construct($a_parent_obj, $a_parent_cmd, $formname='test_output')
Constructor.
initCommand(ilAssFileUploadFileTableCommandButton $commandButton, $postVar)
static setUseRelativeDates($a_status)
set use relative dates
static formatDate(ilDateTime $date)
Format a date @access public.
@classDescription Date and time handling
setCommand($a_value)
Set submit command.
Class ilTable2GUI.
setDisplayAsBlock($a_val)
Set display as block.
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.
setPrefix($a_prefix)
set prefix for sort and offset fields (if you have two or more tables on a page that you want to sort...
addCommandButtonInstance(ilButtonBase $a_button)
Add Command button instance.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
setFormName($a_formname="")
Set Form name.
disable($a_module_name)
diesables particular modules of table
setStyle($a_element, $a_style)
enable($a_module_name)
enables particular modules of table
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms @access public
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:17
$ilUser
Definition: imgupload.php:18