24 public function keepTempFileUpload($a_hash, $a_field, $a_tmp_name, $a_name, $a_type, $a_index = null, $a_sub_index = null)
26 $this->keepFileUpload($a_hash, $a_field, $a_tmp_name, $a_name, $a_type, $a_index, $a_sub_index);
42 public static function getTempFilename($a_hash, $a_field, $a_name, $a_type, $a_index = null, $a_sub_index = null)
44 $a_name = ilUtil::getAsciiFileName($a_name);
46 $tmp_file_name = implode(
54 str_replace(
"/",
"~~", $a_type),
55 str_replace(
"~~",
"_", $a_name),
62 return $temp_path . $tmp_file_name;
76 if (is_dir($temp_path)) {
77 $temp_files = glob($temp_path .
"/" . session_id() .
"~~" . $hash .
"~~*");
78 if (is_array($temp_files)) {
79 foreach ($temp_files as $full_file) {
80 $file = explode(
"~~", basename($full_file));
84 $type = $file[5] .
"/" . $file[6];
88 if (!$_FILES[$field][
"tmp_name"][$idx][$idx2]) {
89 $_FILES[$field][
"tmp_name"][$idx][$idx2] = $full_file;
90 $_FILES[$field][
"name"][$idx][$idx2] =
$name;
91 $_FILES[$field][
"type"][$idx][$idx2] =
$type;
92 $_FILES[$field][
"error"][$idx][$idx2] = 0;
93 $_FILES[$field][
"size"][$idx][$idx2] = filesize($full_file);
97 if (!$_FILES[$field][
"tmp_name"][$idx]) {
98 $_FILES[$field][
"tmp_name"][$idx] = $full_file;
99 $_FILES[$field][
"name"][$idx] =
$name;
100 $_FILES[$field][
"type"][$idx] =
$type;
101 $_FILES[$field][
"error"][$idx] = 0;
102 $_FILES[$field][
"size"][$idx] = filesize($full_file);
105 if (!$_FILES[$field][
"tmp_name"]) {
106 $_FILES[$field][
"tmp_name"] = $full_file;
107 $_FILES[$field][
"name"] =
$name;
108 $_FILES[$field][
"type"] =
$type;
109 $_FILES[$field][
"error"] = 0;
110 $_FILES[$field][
"size"] = filesize($full_file);
117 throw new ilDclException(
'temp dir path "' . $temp_path .
'" is not a directory');
131 foreach ($files as $file) {
132 if (file_exists($file)) {
static getDataDir()
get data directory (outside webspace)