19 declare(strict_types=1);
48 return $this->image_material;
53 $this->image_material = $image_material;
81 if ($this->
getImageMaterial()->getImagetype() && !$this->question_files->isAllowedImageMimeType($this->getImageMaterial()->getImagetype())) {
85 if (!$this->question_files->isAllowedImageMimeType($this->getDetectedMimeType())) {
90 $declaredMimeType = current(explode(
';', $this->
getImageMaterial()->getImagetype()));
93 if ($declaredMimeType != $detectedMimeType) {
100 'QPL: imported image with declared mime (' . $declaredMimeType .
') ' 101 .
'and detected mime (' . $detectedMimeType .
')' 121 return $this->question_files->isAllowedImageFileExtension($this->
getDetectedMimeType(), $extension);
128 $label = basename($label);
137 $finfo =
new finfo(FILEINFO_MIME);
139 return $finfo->buffer($content);
144 $pathInfo = pathinfo($label);
146 if (isset($pathInfo[
'extension'])) {
147 return $pathInfo[
'extension'];
155 $pathInfo = pathinfo($label);
157 return array_key_exists(
'extension', $pathInfo);
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
hasFileExtension(string $label)
__construct(protected ilQTIMatimage $image_material, private QuestionFiles $question_files)
setImageMaterial(ilQTIMatimage $image_material)
static getASCIIFilename(string $a_filename)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
determineFileExtension(string $label)
setDetectedMimeType(string $detectedMimeType)
determineMimeType(?string $content)