23 public function __construct($a_parent_obj, $a_parent_cmd =
"", $a_template_context =
"")
27 $this->
setId(self::USER_EXPORT_TABLE_ID);
30 $this->logger = $DIC->logger()->user();
39 $this->lng->loadLanguageModule(
'usr');
44 $this->
addColumn($this->lng->txt(
'userfolder_export_file'),
'file',
'50%');
45 $this->
addColumn($this->lng->txt(
'userfolder_export_file_size'),
'size_sort',
'25%');
46 $this->
addColumn($this->lng->txt(
'date'),
'dt_sort',
'25%');
52 $this->
setRowTemplate(
'tpl.usr_export_file_row.html',
'Services/User');
57 $this->lng->txt(
'download')
61 'confirmDeleteExportFile',
62 $this->lng->txt(
'delete')
87 $this->tpl->setVariable(
'CHECKBOX_ID', $row[
'file']);
88 $this->tpl->setVariable(
'TXT_FILENAME', $row[
'file']);
89 $this->tpl->setVariable(
'TXT_SIZE', $row[
'size']);
90 $this->tpl->setVariable(
'TXT_DATE', $row[
'date']);
96 public function parse(array $export_files)
100 foreach ($export_files as $num => $file_info) {
104 $file_info_parts = explode(
'_', $file_info[
'filename']);
105 $dt = $file_info_parts[0];
109 $files[$counter][
'file'] = $file_info[
'filename'];
110 $files[$counter][
'size'] = $file_info[
'filesize'];
111 $files[$counter][
'size_sort'] = $file_info[
'filesize'];
113 $files[$counter][
'dt_sort'] = $dt;
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
User export file table Should be replaced in the future by standard export file handling.
getParentCmd()
Get parent command.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
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.
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
numericOrdering($a_field)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
__construct($a_parent_obj, $a_parent_cmd="", $a_template_context="")
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
const USER_EXPORT_FORM_NAME
setFormName($a_formname="")
Set Form name.
__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.
parse(array $export_files)
const USER_EXPORT_TABLE_ID