3 declare(strict_types=1);
30 protected string $alt =
"";
36 string $a_postvar =
"" 40 $this->
lng = $DIC->language();
41 $lng = $DIC->language();
46 $this->
setSuffixes(array(
"jpg",
"jpeg",
"png",
"gif"));
49 $this->tpl = $DIC->ui()->mainTemplate();
54 $this->allow_deletion = $a_val;
64 $this->allow_capture = $a_val;
80 $this->cache = $a_cache;
88 public function setImage(
string $a_image): void
90 $this->image = $a_image;
98 public function setAlt(
string $a_alt): void
112 $quota_exceeded = $quota_legend =
false;
113 $i_tpl =
new ilTemplate(
"tpl.prop_image_file.html",
true,
true,
"Services/Form");
116 $i_tpl->setCurrentBlock(
"capture");
117 $i_tpl->setVariable(
"POST_VAR_V", $this->
getPostVar());
118 $i_tpl->setVariable(
"TXT_USE_CAMERA",
$lng->
txt(
"form_use_camera"));
119 $i_tpl->setVariable(
"TXT_TAKE_SNAPSHOT",
$lng->
txt(
"form_take_snapshot"));
120 $i_tpl->parseCurrentBlock();
122 $main_tpl->addJavascript(
"./Services/Form/js/ServiceFormImageFileCapture.js");
128 $i_tpl->setVariable(
"POST_VAR_D", $this->
getPostVar());
130 "TXT_DELETE_EXISTING",
131 $lng->
txt(
"delete_existing_file")
133 $i_tpl->parseCurrentBlock();
137 $i_tpl->setCurrentBlock(
"has_value");
138 $i_tpl->setVariable(
"TEXT_IMAGE_NAME", $this->
getValue());
139 $i_tpl->parseCurrentBlock();
141 $i_tpl->setCurrentBlock(
"image");
143 $pos = strpos($this->
getImage(),
'?');
144 if ($pos !==
false) {
145 $i_tpl->setVariable(
"SRC_IMAGE", $this->
getImage() .
"&time=" . time());
147 $i_tpl->setVariable(
"SRC_IMAGE", $this->
getImage() .
"?time=" . time());
150 $i_tpl->setVariable(
"SRC_IMAGE", $this->
getImage());
152 $i_tpl->setVariable(
"POST_VAR_I", $this->
getPostVar());
153 $i_tpl->setVariable(
"ALT_IMAGE", $this->
getAlt());
154 $i_tpl->parseCurrentBlock();
159 $i_tpl->setCurrentBlock(
"pending");
160 $i_tpl->setVariable(
"TXT_PENDING",
$lng->
txt(
"file_upload_pending") .
162 $i_tpl->parseCurrentBlock();
165 $i_tpl->setVariable(
"POST_VAR", $this->
getPostVar());
166 $i_tpl->setVariable(
"ID", $this->
getFieldId());
170 $i_tpl->setVariable(
"TXT_BROWSE",
$lng->
txt(
"select_file"));
173 if (!$quota_exceeded) {
174 $i_tpl->setVariable(
"TXT_MAX_SIZE",
$lng->
txt(
"file_notice") .
" " .
179 $i_tpl->setVariable(
"TXT_MAX_SIZE", $quota_exceeded);
185 " disabled=\"disabled\"" 190 $a_tpl->
setVariable(
"PROP_GENERIC", $i_tpl->get());
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)