Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
1
+
2
+<!-- indexer::stop -->
3
+<div class="<?= $this->class ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
4
+
5
+  <?php if ($this->headline): ?>
6
+    <<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>>
7
+  <?php endif; ?>
8
+
9
+  <form<?php if ($this->action): ?> action="<?= $this->action ?>"<?php endif; ?> method="<?= $this->method ?>" enctype="<?= $this->enctype ?>"<?= $this->attributes ?><?= $this->novalidate ?>>
10
+ 
11
+    <div class="formbody  <?php if (preg_match('/"([^"]+)"/', $this->attributes, $m)) {print $m[1];} ?>">
12
+      <?php if ('get' != $this->method): ?>
13
+        <input type="hidden" name="FORM_SUBMIT" value="<?= $this->formSubmit ?>">
14
+        <input type="hidden" name="REQUEST_TOKEN" value="<?= $this->requestToken ?>">
15
+        <?php if ($this->maxFileSize): ?>
16
+          <input type="hidden" name="MAX_FILE_SIZE" value="<?= $this->maxFileSize ?>">
17
+        <?php endif; ?>
18
+      <?php endif; ?>
19
+      <?= $this->hidden ?>
20
+      <?= $this->fields ?>
21
+    </div>
22
+  </form>
23
+
24
+</div>
25
+<!-- indexer::continue -->