175 str_replace(
' ',
'', $this->
getTestTitle() .
'_' . $this->question->getTitle())
182 SELECT tst_solutions.solution_id, tst_solutions.pass, tst_solutions.active_fi, tst_solutions.question_fi, 183 tst_solutions.value1, tst_solutions.value2, tst_solutions.tstamp 184 FROM tst_solutions, tst_active, qpl_questions 185 WHERE tst_solutions.active_fi = tst_active.active_id 186 AND tst_solutions.question_fi = qpl_questions.question_id 187 AND tst_solutions.question_fi = %s 188 AND tst_active.test_fi = %s 189 ORDER BY tst_solutions.active_fi, tst_solutions.tstamp 192 $res = $this->db->queryF(
194 array(
"integer",
"integer"),
195 array($this->question->getId(), $this->
getTestId())
198 $solutionData = array();
200 while ($row = $this->db->fetchAssoc(
$res)) {
201 if (!isset($solutionData[$row[
'active_fi']])) {
202 $solutionData[ $row[
'active_fi'] ] = array();
205 if (!isset($solutionData[ $row[
'active_fi'] ][ $row[
'pass'] ])) {
206 $solutionData[ $row[
'active_fi'] ][ $row[
'pass'] ] = array();
209 $solutionData[ $row[
'active_fi'] ][ $row[
'pass'] ][] = $row;
212 return $solutionData;
217 $activeIds = array();
219 foreach ($solutionData as $activeId => $passes) {
220 $activeIds[] = $activeId;
223 require_once
'Modules/Test/classes/class.ilTestParticipantData.php';
225 $participantData->setActiveIdsFilter($activeIds);
226 $participantData->setParticipantAccessFilter(
229 $participantData->load($this->
getTestId());
231 return $participantData;
236 foreach ($solutionData as $activeId => $passes) {
237 if (!in_array($activeId, $participantData->
getActiveIds())) {
241 foreach ($passes as $pass => $files) {
242 foreach ($files as $file) {
243 $uploadedFileDir = $this->question->getFileUploadPath(
246 $this->question->getId()
250 if (!is_file($uploadedFileDir . $file[
'value1'])) {
254 $destinationDir = $this->tempDirPath .
'/' . $this->mainFolderName .
'/';
260 copy($uploadedFileDir . $file[
'value1'], $destinationDir . $file[
'value2']);
268 return $this->
lng->txt(
'pass') .
'_' . ($pass + 1);
273 ilFileUtils::zip($this->tempDirPath .
'/' . $this->mainFolderName, $this->tempZipFilePath);
275 $pathinfo = pathinfo($this->tempZipFilePath);
276 $this->finalZipFilePath = dirname($pathinfo[
'dirname']) .
'/' . $pathinfo[
'basename'];
298 $this->mainFolderName . self::ZIP_FILE_EXTENSION
304 return self::ZIP_FILE_MIME_TYPE;
createFileUploadCollectionZipFile()
removeFileUploadCollection()
getFileUploadSolutionData()
collectUploadedFiles($solutionData, ilTestParticipantData $participantData)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static getASCIIFilename(string $a_filename)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static getAccessStatisticsUserFilter($refId)
__construct(ilDBInterface $db, ilLanguage $lng)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
static rename(string $a_source, string $a_target)
getFileSystemCompliantFullnameByActiveId($activeId)
static getRootLogger()
The unique root logger has a fixed error level.
getParticipantData($solutionData)