6 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
30 $a_label_enable =
false,
33 $a_commands = array(),
34 $a_post_dir_path =
false,
38 $ilCtrl = $DIC[
'ilCtrl'];
40 $ilAccess = $DIC[
'ilAccess'];
43 $this->
setId($a_table_id);
44 $this->cur_dir = $a_cur_dir;
45 $this->cur_subdir = $a_cur_subdir;
46 $this->label_enable = $a_label_enable;
47 $this->label_header = $a_label_header;
48 $this->file_labels = $a_file_labels;
49 $this->post_dir_path = $a_post_dir_path;
53 $this->
setTitle(
$lng->txt(
"cont_files") .
" " . $this->cur_subdir);
55 $this->has_multi =
false;
56 for (
$i = 0;
$i < count($a_commands);
$i++) {
57 if (!$a_commands[
$i][
"single"]) {
60 $this->has_multi =
true;
62 $this->row_commands[] = array(
63 "cmd" =>
"extCommand_" . $i,
64 "caption" => $a_commands[$i][
"name"],
65 "allow_dir" => $a_commands[$i][
"allow_dir"]
78 "tpl.directory_row.html",
86 if ($a_field ==
"size") {
107 if (is_dir($this->cur_dir)) {
110 $entries = array(array(
"type" =>
"dir",
"entry" =>
".."));
114 foreach ($entries as
$e) {
115 if (($e[
"entry"] ==
".") || ($e[
"entry"] ==
".." && empty($this->cur_subdir))) {
118 $cfile = (!empty($this->cur_subdir))
119 ? $this->cur_subdir .
"/" . $e[
"entry"]
122 if ($this->label_enable) {
123 $label = (is_array($this->file_labels[$cfile]))
124 ? implode(
", ", $this->file_labels[$cfile])
128 $pref = ($e[
"type"] ==
"dir")
131 $items[] = array(
"file" => $cfile,
"entry" => $e[
"entry"],
132 "type" => $e[
"type"],
"label" => $label,
"size" => $e[
"size"],
133 "name" => $pref . $e[
"entry"]);
140 if ($this->has_multi) {
146 $this->
addColumn($this->lng->txt(
"cont_dir_file"),
"name");
147 $this->
addColumn($this->lng->txt(
"cont_size"),
"size");
149 if ($this->label_enable) {
150 $this->
addColumn($this->label_header,
"label");
153 if (
sizeof($this->row_commands)) {
154 $this->
addColumn($this->lng->txt(
"actions"));
155 include_once
"Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php";
165 return $entry[
'entry'] ===
'..';
174 $ilCtrl = $DIC[
'ilCtrl'];
176 $hash = $this->post_dir_path
177 ? md5($a_set[
"file"])
178 : md5($a_set[
"entry"]);
180 if ($this->has_multi) {
182 $this->tpl->touchBlock(
'no_checkbox');
184 $this->tpl->setVariable(
"CHECKBOX_ID", $hash);
189 if ($this->label_enable) {
190 $this->tpl->setCurrentBlock(
"Label");
191 $this->tpl->setVariable(
"TXT_LABEL", $a_set[
"label"]);
192 $this->tpl->parseCurrentBlock();
195 $ilCtrl->setParameter($this->parent_obj,
"cdir", $this->cur_subdir);
198 if ($a_set[
"type"] ==
"dir") {
199 $this->tpl->setCurrentBlock(
"FileLink");
200 $ilCtrl->setParameter($this->parent_obj,
"newdir", $a_set[
"entry"]);
201 $ilCtrl->setParameter($this->parent_obj,
"resetoffset", 1);
202 $this->tpl->setVariable(
204 $ilCtrl->getLinkTarget($this->parent_obj,
"listFiles")
206 $ilCtrl->setParameter($this->parent_obj,
"newdir",
"");
207 $this->tpl->setVariable(
"TXT_FILENAME", $a_set[
"entry"]);
208 $this->tpl->parseCurrentBlock();
210 $this->tpl->setVariable(
"ICON",
"<img src=\"" .
212 $ilCtrl->setParameter($this->parent_obj,
"resetoffset",
"");
214 $this->tpl->setCurrentBlock(
"File");
215 $this->tpl->setVariable(
"TXT_FILENAME2", $this->secure($a_set[
"entry"]));
216 $this->tpl->parseCurrentBlock();
219 if ($a_set[
"type"] !=
"dir") {
224 if (
sizeof($this->row_commands) &&
225 !($a_set[
"type"] ==
"dir" && $a_set[
"entry"] ==
"..")) {
228 foreach ($this->row_commands as $rcom) {
229 if ($rcom[
"allow_dir"] || $a_set[
"type"] !=
"dir") {
230 include_once(
"./Services/Utilities/classes/class.ilMimeTypeUtil.php");
232 if (($rcom[
"caption"] ==
"Unzip" &&
ilMimeTypeUtil::getMimeType($this->cur_dir . $a_set[
'entry']) ==
"application/zip") || $rcom[
"caption"] !=
"Unzip") {
233 $ilCtrl->setParameter($this->parent_obj,
"fhsh", $hash);
234 $url = $ilCtrl->getLinkTarget($this->parent_obj, $rcom[
"cmd"]);
235 $ilCtrl->setParameter($this->parent_obj,
"fhsh",
"");
237 $advsel->addItem($rcom[
"caption"],
"",
$url);
241 $this->tpl->setVariable(
"ACTIONS", $advsel->getHTML());
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static getDir($a_dir, $a_rec=false, $a_sub_dir="")
get directory
fillRow($a_set)
Fill table row.
numericOrdering($a_field)
getOrderDirection()
Get order direction.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static getMimeType($a_file='', $a_filename='', $a_mime='')
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.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
addMultiCommand($a_cmd, $a_text)
Add Command button.
isDoubleDotDirectory(array $entry)
prepareOutput()
Get data just before output.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__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.
setEnableHeader($a_enableheader)
Set Enable Header.
static formatSize($size, $a_mode='short', $a_lng=null)
Returns the specified file size value in a human friendly form.
setEnableTitle($a_enabletitle)
Set Enable Title.
__construct( $a_parent_obj, $a_parent_cmd, $a_cur_dir, $a_cur_subdir, $a_label_enable=false, $a_file_labels, $a_label_header="", $a_commands=array(), $a_post_dir_path=false, $a_table_id="")
Constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
TableGUI class for file system.