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,16 @@
1
+<div class="member_list_default">
2
+
3
+  <?php if($this->addImage): ?>
4
+    <?php $this->insert('memberExtension_image', $this->arrData); ?>
5
+  <?php endif; ?>
6
+
7
+  <ul>
8
+    <?php foreach ($this->fields as $k => $v): ?>
9
+      <li class="<?= $k ?>"><?= $v ?></li>
10
+    <?php endforeach; ?>
11
+  </ul>
12
+
13
+  <?php if($this->link): ?>
14
+    <a href="<?=$this->link?>"><?=$GLOBALS['TL_LANG']['MSC']['memberDetail']?></a>
15
+  <?php endif; ?>
16
+</div>