21 public function __construct($a_container_id = 0, $a_ass_id = 0)
23 $this->ass_id = $a_ass_id;
25 $this->log->debug(
"ilFSWebStorageExercise construct with a_container_id = " . $a_container_id .
" and ass_id =" . $a_ass_id);
35 if ($this->ass_id > 0) {
36 $this->submissions_path = $this->path .
"/subm_" .
$this->ass_id;
38 $this->log->debug(
"parent init() with ass_id =" . $this->ass_id);
42 $this->log->debug(
"no parent init() without ass_id");
79 $this->log->debug(
"parent create");
88 $internal_dir = $this->submissions_path .
"/" . $user_id;
91 $internal_dir_without_dot = substr($internal_dir, 1);
93 $absolute_path = ILIAS_ABSOLUTE_PATH . $internal_dir_without_dot;
95 if (is_dir($absolute_path)) {
96 parent::deleteDirectory($absolute_path);
97 $this->log->debug(
"Removed = " . $absolute_path);
107 $files_order = $ass->getInstructionFilesOrder();
110 if (!is_dir($this->path)) {
114 $dp = opendir($this->path);
115 while ($file = readdir($dp)) {
116 if (!is_dir($this->path .
'/' . $file)) {
119 'size' => filesize($this->path .
'/' . $file),
120 'ctime' => filectime($this->path .
'/' . $file),
121 'fullpath' => $this->path .
'/' . $file,
122 'order' => $files_order[$file][
"order_nr"] ? $files_order[$file][
"order_nr"] : 0
146 if (is_array($a_files[
"name"])) {
147 foreach ($a_files[
"name"] as $k =>
$name) {
149 $type = $a_files[
"type"][$k];
150 $tmp_name = $a_files[
"tmp_name"][$k];
151 $size = $a_files[
"size"][$k];
155 $this->path . DIRECTORY_SEPARATOR . basename(
$name),
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
getFiles()
Get assignment files.
getAssignmentFilePath($a_file)
Get path for assignment file.
init()
Append ass_<ass_id> to path (assignment id)
deleteUserSubmissionDirectory(int $user_id)
__construct($a_container_id=0, $a_ass_id=0)
Constructor.
getPathPostfix()
Implementation of abstract method.
create()
Create directory.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
getAbsolutePath()
Get absolute path of storage directory.
__construct(Container $dic, ilPlugin $plugin)
uploadAssignmentFiles($a_files)
Upload assignment files (e.g.
static getLogger($a_component_id)
Get component logger.
getPathPrefix()
Implementation of abstract method.