| ... | ... |
@@ -1,14 +1,14 @@ |
| 1 | 1 |
|
| 2 | 2 |
<?php if ($this->tableless): ?> |
| 3 | 3 |
|
| 4 |
- <div class="<?php echo $this->prefix; ?> headline w100"> |
|
| 5 |
- <?php echo $this->generate(); ?> |
|
| 4 |
+ <div class="<?= $this->prefix; ?> headline w100"> |
|
| 5 |
+ <?= $this->generate(); ?> |
|
| 6 | 6 |
</div> |
| 7 | 7 |
|
| 8 | 8 |
<?php else: ?> |
| 9 | 9 |
|
| 10 |
- <tr class="<?php echo $this->rowClass; ?>"> |
|
| 11 |
- <td colspan="2" class="colspan headline"><?php echo $this->generate(); ?></td> |
|
| 10 |
+ <tr class="<?= $this->rowClass; ?>"> |
|
| 11 |
+ <td colspan="2" class="colspan headline"><?= $this->generate(); ?></td> |
|
| 12 | 12 |
</tr> |
| 13 | 13 |
|
| 14 | 14 |
<?php endif; ?> |
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
|
| 2 | 2 |
<?php if ($this->tableless): ?> |
| 3 | 3 |
|
| 4 |
- <div class="<?php echo $this->prefix; ?> headline w100<?php if ($this->eSM_fl_class): ?> <?php echo $this->eSM_fl_class; ?><?php endif; ?>"> |
|
| 4 |
+ <div class="<?php echo $this->prefix; ?> headline w100"> |
|
| 5 | 5 |
<?php echo $this->generate(); ?> |
| 6 | 6 |
</div> |
| 7 | 7 |
|
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
|
| 2 | 2 |
<?php if ($this->tableless): ?> |
| 3 | 3 |
|
| 4 |
- <div class="<?php echo $this->prefix; ?> headline"> |
|
| 4 |
+ <div class="<?php echo $this->prefix; ?> headline w100<?php if ($this->eSM_fl_class): ?> <?php echo $this->eSM_fl_class; ?><?php endif; ?>"> |
|
| 5 | 5 |
<?php echo $this->generate(); ?> |
| 6 | 6 |
</div> |
| 7 | 7 |
|
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,14 @@ |
| 1 |
+ |
|
| 2 |
+<?php if ($this->tableless): ?> |
|
| 3 |
+ |
|
| 4 |
+ <div class="<?php echo $this->prefix; ?> headline"> |
|
| 5 |
+ <?php echo $this->generate(); ?> |
|
| 6 |
+ </div> |
|
| 7 |
+ |
|
| 8 |
+<?php else: ?> |
|
| 9 |
+ |
|
| 10 |
+ <tr class="<?php echo $this->rowClass; ?>"> |
|
| 11 |
+ <td colspan="2" class="colspan headline"><?php echo $this->generate(); ?></td> |
|
| 12 |
+ </tr> |
|
| 13 |
+ |
|
| 14 |
+<?php endif; ?> |