12 require_once(
"./Services/FileSystem/classes/class.ilFileDataImport.php");
36 define(
'GROUP_IMPORT_PATH',
'group');
37 parent::ilFileDataImport();
38 $this->group_path = parent::getPath().
"/".GROUP_IMPORT_PATH;
48 return $this->files ? $this->files : array();
58 return $this->object_file;
73 if(isset($a_http_post_file) && $a_http_post_file[
'size'])
79 $a_http_post_file[
'name'], $this->
getPath().
'/'.$a_http_post_file[
'name']);
95 $a_dir = $a_dir ? $a_dir : $this->
getPath();
99 foreach($this->
getFiles() as $file_data)
101 if(is_dir($file_data[
"abs_path"]))
105 if(($tmp = explode(
".",$file_data[
"name"])) !==
false)
107 if($tmp[count($tmp) - 1] ==
"xml")
109 return $this->xml_file = $file_data[
"abs_path"];
118 $a_dir = $a_dir ? $a_dir : $this->
getPath();
122 foreach($this->
getFiles() as $file_data)
124 if(is_dir($file_data[
"abs_path"]))
128 if($file_data[
"name"] == $a_file)
130 return $this->object_file = $file_data[
"abs_path"];
133 return $this->object_file;
140 foreach($this->
getFiles() as $file_data)
161 foreach($this->
getFiles() as $file_data)
163 if(is_dir($file_data[
"abs_path"]))
169 unlink($file_data[
"abs_path"]);
177 $a_dir = $a_dir ? $a_dir : $this->
getPath();
179 $this->files = array();
180 $dp = opendir($a_dir);
182 while(
$file = readdir($dp))
188 $this->files[] = array(
190 'abs_path' => $a_dir.
"/".
$file,
191 'size' => filesize($a_dir.
"/".
$file),
207 if(is_writable($this->group_path) && is_readable($this->group_path))
213 $this->
ilias->raiseError(
"Group import directory is not readable/writable by webserver",$this->
ilias->error_obj->FATAL);
225 if(!@file_exists($this->group_path))
This class handles all operations on files for the exercise object.
static unzip($a_file, $overwrite=false, $a_flat=false)
unzip file
ilFileDataImportGroup()
Constructor call base constructors checks if directory is writable and sets the optional obj_id...
getPath()
get exercise path public
__checkReadWrite()
check if directory is writable overwritten method from base class private
This class handles all operations on files for the exercise object.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
redirection script todo: (a better solution should control the processing via a xml file) ...
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
storeUploadedFile($a_http_post_file)
store uploaded file in filesystem
_initDirectory()
init directory overwritten method public
findObjectFile($a_file, $a_dir='')
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively