42 $this->timestamp = time();
61 if (!is_string($extension) || !strlen($extension)) {
62 throw new ilException(
'Missing file extension! Please pass a file extension of type string.');
63 } elseif (substr_count($extension,
'.') > 1 || (strpos($extension,
'.') !==
false && strpos($extension,
'.') !== 0)) {
64 throw new ilException(
'Please use at most one dot in your file extension.');
65 } elseif (strpos($extension,
'.') === 0) {
66 $extension = substr($extension, 1);
72 throw new ilException(
'The additional file part may not contain __ at the beginning!');
80 return $this->test->getExportDirectory() . DIRECTORY_SEPARATOR . $this->
getTimestamp() .
'__' .
IL_INST_ID .
'__' . $this->test->getType() .
$additional . $this->test->getId() .
'.' . $extension;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilObjTest $test)
getPathname($extension, $additional='')