Browse code

First iteration of revamped formilicious for Contao 4.13+

Benjamin Roth authored on20/01/2023 09:49:23
Showing1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,13 +0,0 @@
1
-
2
-<?php if ($this->fsType == 'fsStart'): ?>
3
-
4
-  <fieldset<?php if ($this->class): ?> class="<?= $this->class; ?>"<?php endif; ?>>
5
-  <?php if ($this->label): ?>
6
-    <legend><?= $this->label; ?></legend>
7
-  <?php endif; ?>
8
-
9
-<?php else: ?>
10
-
11
-  </fieldset>
12
-
13
-<?php endif; ?>
Browse code

Templates now use php short open tags

Benjamin Roth authored on17/08/2015 17:19:47
Showing1 changed files
... ...
@@ -1,9 +1,9 @@
1 1
 
2 2
 <?php if ($this->fsType == 'fsStart'): ?>
3 3
 
4
-  <fieldset<?php if ($this->class): ?> class="<?php echo $this->class; ?>"<?php endif; ?>>
4
+  <fieldset<?php if ($this->class): ?> class="<?= $this->class; ?>"<?php endif; ?>>
5 5
   <?php if ($this->label): ?>
6
-    <legend><?php echo $this->label; ?></legend>
6
+    <legend><?= $this->label; ?></legend>
7 7
   <?php endif; ?>
8 8
 
9 9
 <?php else: ?>
Browse code

Initial commit

Benjamin Roth authored on27/03/2015 10:45:40
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+
2
+<?php if ($this->fsType == 'fsStart'): ?>
3
+
4
+  <fieldset<?php if ($this->class): ?> class="<?php echo $this->class; ?>"<?php endif; ?>>
5
+  <?php if ($this->label): ?>
6
+    <legend><?php echo $this->label; ?></legend>
7
+  <?php endif; ?>
8
+
9
+<?php else: ?>
10
+
11
+  </fieldset>
12
+
13
+<?php endif; ?>