3 declare(strict_types=1);
39 $this->export_dir .=
"_" . $a_obj_id;
53 if (
$data[
'type'] !=
'file') {
56 $file_parts = explode(
'.',
$name);
57 if (!is_numeric($file_parts[0]) or (strcmp(
'xml', $file_parts[1]) != 0)) {
61 $file_info[$file_parts[0]][
'size'] =
$data[
'size'];
62 $file_info[$file_parts[0]][
'date'] = $file_parts[0];
64 if (
$xml = simplexml_load_file($this->export_dir .
'/' .
$name)) {
66 foreach (
$xml->xpath(
'Record/Title') as $title) {
67 $records[] = (string) $title;
69 $file_info[$file_parts[0]][
'name'] = $records;
81 if (!is_dir($this->export_dir)) {
86 $files[$file_name] = $file_data;
94 public function create(
string $a_xml): void
98 $ilLog = $DIC[
'ilLog'];
100 if (!$fp = fopen($this->export_dir .
'/' . time() .
'.xml',
'w+')) {
101 $ilLog->write(__METHOD__ .
': Cannot open file ' . $this->export_dir .
'/' . time() .
'.xml');
102 throw new ilException(
'Cannot write export file.');
113 $ilLog = $DIC[
'ilLog'];
115 if (!unlink($this->export_dir .
'/' . $a_timest .
'.xml')) {
116 $ilLog->write(__METHOD__ .
': Cannot delete file ' . $this->export_dir .
'/' . $a_timest .
'.xml');
126 $ilLog = $DIC[
'ilLog'];
128 $a_file_basename = (string) $a_file_basename;
129 if (!file_exists($this->export_dir .
'/' . $a_file_basename .
'.xml')) {
130 $ilLog->write(__METHOD__ .
': Cannot find file ' . $this->export_dir .
'/' . $a_file_basename .
'.xml');
133 return $this->export_dir .
'/' . $a_file_basename .
'.xml';
142 if (!is_dir($this->export_dir)) {
getAbsolutePathByFileId(int $a_file_basename)
init()
init export directory private
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
deleteByFileId(int $a_timest)
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static getDataDir()
get data directory (outside webspace)
create(string $a_xml)
Create new export file from xml string.
__construct(int $a_obj_id=null)
readFilesInfo()
Read files info public.