4 include_once
'Services/Form/classes/class.ilSubEnabledFormPropertyGUI.php';
60 $this->tpl = $DIC->ui()->mainTemplate();
61 $this->lng = $DIC->language();
67 $this->tpl->addJavaScript(
'Services/Mail/js/ilMailComposeFunctions.js');
92 $this->rerenderTriggerElementName = $elementId;
93 $this->rerenderUrl =
$url;
134 $this->placeholders[$placeholder][
'placeholder'] = $placeholder;
135 $this->placeholders[$placeholder][
'title'] =
$title;
145 $a_tpl->setCurrentBlock(
"prop_generic");
146 $a_tpl->setVariable(
"PROP_GENERIC", $html);
147 $a_tpl->parseCurrentBlock();
156 $subtpl =
new ilTemplate(
"tpl.mail_manual_placeholders.html",
true,
true,
"Services/Mail");
157 $subtpl->setVariable(
'TXT_USE_PLACEHOLDERS', $this->lng->txt(
'mail_nacc_use_placeholder'));
158 $subtpl->setVariable(
'DEPENDENCY_ELM_ID_OUTER', $this->dependencyElementId);
160 $subtpl->setVariable(
'TXT_PLACEHOLDERS_ADVISE', $this->
getAdviseText());
163 if (count($this->placeholders) > 0) {
164 foreach ($this->placeholders as $placeholder) {
165 $subtpl->setCurrentBlock(
'man_placeholder');
166 $subtpl->setVariable(
'DEPENDENCY_ELM_ID', $this->dependencyElementId);
167 $subtpl->setVariable(
'PLACEHOLDER',
'[' . $placeholder[
'placeholder'] .
']');
168 $subtpl->setVariable(
'PLACEHOLDER_INTERACTION_INFO', sprintf(
169 $this->lng->txt(
'mail_hint_add_placeholder_x'),
170 '[' . $placeholder[
'placeholder'] .
']' 172 $subtpl->setVariable(
'PLACEHOLDER_DESCRIPTION', $placeholder[
'title']);
173 $subtpl->parseCurrentBlock();
187 return $subtpl->get();
206 if ($this->
getMulti() && is_array($a_value)) {
208 $a_value = array_shift($a_value);
210 $this->value = $a_value;
__construct(Container $dic, ilPlugin $plugin)