Browse code

Version 1.5 initial commit

Benjamin Roth authored on24/06/2024 12:06:17
Showing1 changed files
... ...
@@ -10,7 +10,7 @@
10 10
     <form id="<?= $this->formId ?>" method="post">
11 11
       <div class="formbody">
12 12
         <input type="hidden" name="FORM_SUBMIT" value="<?= $this->formId ?>">
13
-        <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
13
+        <input type="hidden" name="REQUEST_TOKEN" value="<?= $this->requestToken ?>">
14 14
         <div class="widget widget-submit">
15 15
           <button type="submit" class="submit"><?= $this->slabel ?></button>
16 16
         </div>
Browse code

Change bundle structure

Sebastian Zoglowek authored on14/08/2022 15:51:15
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,23 @@
1
+<?php $this->extend('block_unsearchable'); ?>
2
+
3
+<?php $this->block('content'); ?>
4
+
5
+<!-- indexer::stop -->
6
+
7
+  <?php if ($this->message): ?>
8
+    <p class="tl_confirm"><?= $this->message ?></p>
9
+  <?php else: ?>
10
+    <form id="<?= $this->formId ?>" method="post">
11
+      <div class="formbody">
12
+        <input type="hidden" name="FORM_SUBMIT" value="<?= $this->formId ?>">
13
+        <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
14
+        <div class="widget widget-submit">
15
+          <button type="submit" class="submit"><?= $this->slabel ?></button>
16
+        </div>
17
+      </div>
18
+    </form>
19
+  <?php endif; ?>
20
+
21
+<!-- indexer::continue -->
22
+
23
+<?php $this->endblock(); ?>