1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,12 +0,0 @@ |
1 |
-<div class="member_reader_full"> |
|
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 |
-</div> |
... | ... |
@@ -1,5 +1,8 @@ |
1 | 1 |
<div class="member_reader_full"> |
2 |
- <?php $this->insert('memberExtension_image', $this->arrData); ?> |
|
2 |
+ |
|
3 |
+ <?php if($this->addImage): ?> |
|
4 |
+ <?php $this->insert('memberExtension_image', $this->arrData); ?> |
|
5 |
+ <?php endif; ?> |
|
3 | 6 |
|
4 | 7 |
<ul> |
5 | 8 |
<?php foreach ($this->fields as $k => $v): ?> |
... | ... |
@@ -1,12 +1,9 @@ |
1 | 1 |
<div class="member_reader_full"> |
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 $k => $v): ?> |
|
9 |
- <li class="<?= $k ?>"><?= $v ?></li> |
|
10 |
- <?php endforeach; ?> |
|
11 |
- </ul> |
|
2 |
+ <?php $this->insert('memberExtension_image', $this->arrData); ?> |
|
3 |
+ |
|
4 |
+ <ul> |
|
5 |
+ <?php foreach ($this->fields as $k => $v): ?> |
|
6 |
+ <li class="<?= $k ?>"><?= $v ?></li> |
|
7 |
+ <?php endforeach; ?> |
|
8 |
+ </ul> |
|
12 | 9 |
</div> |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,12 @@ |
1 |
+<div class="member_reader_full"> |
|
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 |
+</div> |