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
-<?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(); ?>
Browse code

[Update] Added image + image deletion when uploading an image

Sebastian Zoglowek authored on26/02/2022 03:08:49
Showing1 changed files
... ...
@@ -2,8 +2,14 @@
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; ?>" itemprop="image">
8
+  </figure>
9
+<?php else: ?>
5 10
   <figure class="image_container">
6 11
       <?php $this->insert('picture_default', $this->picture); ?>
7 12
   </figure>
13
+<?php endif; ?>
8 14
 
9 15
 <?php $this->endblock(); ?>
Browse code

Initial commit: Frontend module member avatar added

oveleon authored on08/03/2019 16:40:16
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,9 @@
1
+<?php $this->extend('block_searchable'); ?>
2
+
3
+<?php $this->block('content'); ?>
4
+
5
+  <figure class="image_container">
6
+      <?php $this->insert('picture_default', $this->picture); ?>
7
+  </figure>
8
+
9
+<?php $this->endblock(); ?>