48 ?array $a_file_labels = [],
49 ?
string $a_label_header =
"",
50 ?array $a_commands = [],
51 ?
bool $a_post_dir_path =
false,
52 ?
string $a_table_id =
"" 55 $this->
setId($a_table_id);
56 $this->
ctrl = $DIC->ctrl();
57 $this->
lng = $DIC->language();
58 if ($a_cur_dir !== realpath($a_cur_dir)) {
59 throw new \InvalidArgumentException(
'$a_cur_dir must be a absolute path');
61 $this->
filesystem = LegacyPathHelper::deriveFilesystemFrom($a_cur_dir);
62 $this->relative_cur_dir = LegacyPathHelper::createRelativePath($a_cur_dir);
63 $this->cur_dir = $a_cur_dir;
64 $this->cur_subdir = $a_cur_subdir;
65 $this->label_enable = $a_label_enable;
66 $this->label_header = $a_label_header;
67 $this->file_labels = $a_file_labels;
68 $this->post_dir_path = $a_post_dir_path;
69 $this->filesystem_gui = $a_parent_obj;
74 $this->has_multi =
false;
76 foreach ((array) $a_commands as
$i => $command) {
77 if (!($command[
"single"] ??
false)) {
80 $this->has_multi =
true;
82 $this->row_commands[] = array(
83 "cmd" =>
"extCommand_" . $i,
84 "caption" => $command[
"name"],
85 "allow_dir" => $command[
"allow_dir"] ??
"",
86 "id" => $command[
"id"] ??
"",
98 "tpl.directory_row.html",
106 if ($a_field ==
"size") {
123 if ($this->
filesystem->has($this->relative_cur_dir)) {
125 if ($this->cur_dir!==
'') {
137 foreach ($this->
filesystem->listContents($this->relative_cur_dir) as
$i => $content) {
138 $basename = basename($content->getPath());
139 $entries[$basename] = [
142 'entry' => $basename,
143 'type' => $content->isDir() ?
'dir' :
'file',
145 'size' => $content->isFile() ? $this->
filesystem->getSize($content->getPath(), 1)->inBytes() : 0
149 $entries = array(array(
"type" =>
"dir",
"entry" =>
".."));
153 foreach ($entries as
$e) {
154 if (($e[
"entry"] ==
".") || ($e[
"entry"] ==
".." && empty($this->cur_subdir))) {
157 $cfile = (!empty($this->cur_subdir))
158 ? $this->cur_subdir .
"/" . $e[
"entry"]
161 if ($this->label_enable) {
162 $label = (isset($this->file_labels[$cfile]) && is_array($this->file_labels[$cfile]))
163 ? implode(
", ", $this->file_labels[$cfile])
167 $pref = ($e[
"type"] ==
"dir")
170 $items[] = array(
"file" => $cfile,
171 "entry" => $e[
"entry"],
172 "type" => $e[
"type"],
173 "label" => $label ??
'',
174 "size" => $e[
"size"] ??
'',
175 "name" => $pref . $e[
"entry"]
183 if ($this->has_multi) {
189 $this->
addColumn($this->
lng->txt(
"cont_dir_file"),
"name");
192 if ($this->label_enable) {
193 $this->
addColumn($this->label_header,
"label");
196 if (
sizeof($this->row_commands)) {
203 return $entry[
'entry'] ===
'..';
209 protected function fillRow(array $a_set): void
211 $hash = $this->post_dir_path
212 ? md5($a_set[
"file"])
213 : md5($a_set[
"entry"]);
215 if ($this->has_multi) {
217 $this->tpl->touchBlock(
'no_checkbox');
219 $this->tpl->setVariable(
"CHECKBOX_ID", $hash);
224 if ($this->label_enable) {
225 $this->tpl->setCurrentBlock(
"Label");
226 $this->tpl->setVariable(
"TXT_LABEL", $a_set[
"label"]);
227 $this->tpl->parseCurrentBlock();
230 $this->
ctrl->setParameter($this->parent_obj,
"cdir", $this->cur_subdir);
232 if ($a_set[
"type"] ==
"dir") {
233 $this->tpl->setCurrentBlock(
"FileLink");
234 $this->
ctrl->setParameter($this->parent_obj,
"newdir", $a_set[
"entry"]);
235 $this->
ctrl->setParameter($this->parent_obj,
"resetoffset", 1);
236 $this->tpl->setVariable(
238 $this->
ctrl->getLinkTarget($this->parent_obj,
"listFiles")
240 $this->
ctrl->setParameter($this->parent_obj,
"newdir",
"");
241 $this->tpl->setVariable(
"TXT_FILENAME", $a_set[
"entry"]);
242 $this->tpl->parseCurrentBlock();
244 $this->tpl->setVariable(
"ICON",
"<img src=\"" .
246 $this->
ctrl->setParameter($this->parent_obj,
"resetoffset",
"");
248 $this->tpl->setCurrentBlock(
"File");
249 $this->tpl->setVariable(
"TXT_FILENAME2", $this->secure($a_set[
"entry"]));
250 $this->tpl->parseCurrentBlock();
253 if ($a_set[
"type"] !=
"dir") {
264 if (count($this->row_commands) > 0
265 && !(($a_set[
"type"] ??
'') ===
"dir" && ($a_set[
"entry"] ??
'') ===
"..")) {
267 $advsel->setListTitle(
'');
268 foreach ($this->row_commands as $rcom) {
269 if ($rcom[
"allow_dir"] || ($a_set[
"type"] ??
'') !==
"dir") {
272 $path = $this->cur_dir . $a_set[
'entry'];
273 $mime_type = MimeType::getMimeType(
$path);
275 $rcom[
"id"] !==
"unzip_file" 276 || ($rcom[
"id"] ===
"unzip_file" && in_array($mime_type, $zip_mime_types))
278 $this->
ctrl->setParameter($this->parent_obj,
"fhsh", $hash);
279 $url = $this->
ctrl->getLinkTarget($this->parent_obj, $rcom[
"cmd"]);
280 $this->
ctrl->setParameter($this->parent_obj,
"fhsh",
"");
282 $advsel->addItem($rcom[
"caption"],
"",
$url);
286 $this->tpl->setVariable(
"ACTIONS", $advsel->getHTML());
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilFileSystemGUI $filesystem_gui
setDefaultOrderField(string $a_defaultorderfield)
ILIAS Filesystem Filesystem $filesystem
static formatSize(int $size, string $a_mode='short', ?ilLanguage $a_lng=null)
Returns the specified file size value in a human friendly form.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
isDoubleDotDirectory(array $entry)
setDefaultOrderDirection(string $a_defaultorderdirection)
fillRow(array $a_set)
Fill table row.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
numericOrdering(string $a_field)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
File System Explorer GUI class.
__construct(ilFileSystemGUI $a_parent_obj, string $a_parent_cmd, string $a_cur_dir, string $a_cur_subdir, bool $a_label_enable, ?array $a_file_labels=[], ?string $a_label_header="", ?array $a_commands=[], ?bool $a_post_dir_path=false, ?string $a_table_id="")
Constructor.
addMultiCommand(string $a_cmd, string $a_text)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)