Browse code

Change bundle structure

Sebastian Zoglowek authored on14/08/2022 15:51:15
Showing1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,7 +0,0 @@
1
-<?php $this->extend('block_searchable'); ?>
2
-
3
-<?php $this->block('content'); ?>
4
-
5
-<?php $this->insert('memberExtension_image', $this->arrData); ?>
6
-
7
-<?php $this->endblock(); ?>
Browse code

[Update] Refactoring and simplifying member templates

Sebastian Zoglowek authored on24/05/2022 01:40:07
Showing1 changed files
... ...
@@ -2,14 +2,6 @@
2 2
 
3 3
 <?php $this->block('content'); ?>
4 4
 
5
-<?php if($this->noAvatar):?>
6
-  <figure class="image_container">
7
-    <img src="<?= $this->singleSRC; ?>" width="200" height="200" itemprop="image">
8
-  </figure>
9
-<?php else: ?>
10
-  <figure class="image_container">
11
-      <?php $this->insert('picture_default', $this->picture); ?>
12
-  </figure>
13
-<?php endif; ?>
5
+<?php $this->insert('memberExtension_image', $this->arrData); ?>
14 6
 
15 7
 <?php $this->endblock(); ?>
Browse code

[Update] Rework moduleavatar logic

Sebastian Zoglowek authored on23/05/2022 23:23:13
Showing1 changed files
... ...
@@ -4,7 +4,7 @@
4 4
 
5 5
 <?php if($this->noAvatar):?>
6 6
   <figure class="image_container">
7
-    <img src="<?= $this->singleSRC; ?>" itemprop="image">
7
+    <img src="<?= $this->singleSRC; ?>" width="200" height="200" itemprop="image">
8 8
   </figure>
9 9
 <?php else: ?>
10 10
   <figure class="image_container">
Browse code

[Update] Change templateGroup names from member_ to memberExtension_

Sebastian Zoglowek authored on27/02/2022 17:13:14
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+<?php $this->extend('block_searchable'); ?>
2
+
3
+<?php $this->block('content'); ?>
4
+
5
+<?php if($this->noAvatar):?>
6
+  <figure class="image_container">
7
+    <img src="<?= $this->singleSRC; ?>" itemprop="image">
8
+  </figure>
9
+<?php else: ?>
10
+  <figure class="image_container">
11
+      <?php $this->insert('picture_default', $this->picture); ?>
12
+  </figure>
13
+<?php endif; ?>
14
+
15
+<?php $this->endblock(); ?>