19 declare(strict_types=1);
33 public function __construct($a_parent_obj, $a_parent_cmd =
'')
37 $this->
addColumn($this->
lng->txt(
'md_adv_records'),
'records',
"33%");
38 $this->
addColumn($this->
lng->txt(
'date'),
'date',
"33%");
39 $this->
addColumn($this->
lng->txt(
'filesize'),
'file_size',
"33%");
42 $this->
setRowTemplate(
"tpl.edit_files_row.html",
"components/ILIAS/AdvancedMetaData");
52 protected function fillRow(array $a_set): void
54 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
55 $this->tpl->setVariable(
'VAL_SIZE', sprintf(
"%.1f KB", (
string) ((
int) $a_set[
'file_size'] / 1024)));
56 $this->tpl->setVariable(
61 foreach ($a_set[
'record_arr'] as
$title) {
62 $this->tpl->setCurrentBlock(
'record_title');
63 $this->tpl->setVariable(
'REC_TITLE', $title);
64 $this->tpl->parseCurrentBlock();
76 foreach ($a_file_data as
$id =>
$data) {
78 $tmp_arr[
'records'] = implode(
', ',
$data[
'name']);
79 $tmp_arr[
'date'] =
$data[
'date'];
80 $tmp_arr[
'file_size'] =
$data[
'size'] .
' ' . $this->
lng->txt(
'bytes');
81 $tmp_arr[
'record_arr'] =
$data[
'name'];
82 $defs_arr[] = $tmp_arr;
setFormAction(string $a_form_action, bool $a_multipart=false)
parseFiles(array $a_file_data)
parese files public
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
__construct($a_parent_obj, $a_parent_cmd='')
Constructor public.
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
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)
fillRow(array $a_set)
Fill row public.