41 $this->formaction = $a_formaction;
61 $this->target = $a_target;
81 $this->multipart = $a_multipart;
121 $this->name = $a_name;
141 $this->keepopen = $a_keepopen;
161 $this->opentag = $a_open;
201 $this->prevent_double_submission = $a_val;
219 $tpl =
new ilTemplate(
"tpl.form.html",
true,
true,
"Services/Form");
225 $opentpl =
new ilTemplate(
'tpl.form_open.html',
true,
true,
"Services/Form");
228 $opentpl->setCurrentBlock(
"form_target");
229 $opentpl->setVariable(
"FORM_TARGET", $this->
getTarget());
230 $opentpl->parseCurrentBlock();
234 $opentpl->setCurrentBlock(
"form_name");
235 $opentpl->setVariable(
"FORM_NAME", $this->
getName());
236 $opentpl->parseCurrentBlock();
240 $opentpl->setVariable(
"FORM_CLASS",
"preventDoubleSubmission");
245 $opentpl->touchBlock(
"multipart");
268 $opentpl->setVariable(
"FORM_ACTION", $this->
getFormAction());
269 if ($this->
getId() !=
"")
271 $opentpl->setVariable(
"FORM_ID", $this->
getId());
273 $opentpl->parseCurrentBlock();
274 $tpl->setVariable(
'FORM_OPEN_TAG', $opentpl->get());
276 $tpl->setVariable(
"FORM_CONTENT", $content);
279 $tpl->setVariable(
"FORM_CLOSE_TAG",
"</form>");
special template class to simplify handling of ITX/PEAR