Browse code

[Update] Change templateGroup names from member_ to memberExtension_

Sebastian Zoglowek authored on27/02/2022 17:13:14
Showing1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,15 +0,0 @@
1
-<div class="member_list_default">
2
-    <?php if($this->addImage): ?>
3
-        <figure class="image_container">
4
-          <?php $this->insert('picture_default', $this->picture); ?>
5
-        </figure>
6
-    <?php endif; ?>
7
-    <ul>
8
-        <?php foreach ($this->fields as $field): ?>
9
-            <li><?=$field?></li>
10
-        <?php endforeach; ?>
11
-    </ul>
12
-    <?php if($this->link): ?>
13
-        <a href="<?=$this->link?>"><?=$GLOBALS['TL_LANG']['MSC']['memberDetail']?></a>
14
-    <?php endif; ?>
15
-</div>
Browse code

- Add module "MemberList" - Add module "MemberReader"

doishub authored on08/12/2020 15:39:30
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+<div class="member_list_default">
2
+    <?php if($this->addImage): ?>
3
+        <figure class="image_container">
4
+          <?php $this->insert('picture_default', $this->picture); ?>
5
+        </figure>
6
+    <?php endif; ?>
7
+    <ul>
8
+        <?php foreach ($this->fields as $field): ?>
9
+            <li><?=$field?></li>
10
+        <?php endforeach; ?>
11
+    </ul>
12
+    <?php if($this->link): ?>
13
+        <a href="<?=$this->link?>"><?=$GLOBALS['TL_LANG']['MSC']['memberDetail']?></a>
14
+    <?php endif; ?>
15
+</div>