includes/admin/emails/abstract-email-notification.php 1 location
|
@@ 582-586 (lines=5) @@
|
| 579 |
|
|
| 580 |
|
if ( count( $email_tags ) && $formatted ) : ob_start() ?> |
| 581 |
|
<div class="give-email-tags-wrap"> |
| 582 |
|
<?php foreach ( $email_tags as $email_tag ) : ?> |
| 583 |
|
<span class="give_<?php echo $email_tag['tag']; ?>_tag"> |
| 584 |
|
<code>{<?php echo $email_tag['tag']; ?>}</code> - <?php echo $email_tag['description']; ?> |
| 585 |
|
</span> |
| 586 |
|
<?php endforeach; ?> |
| 587 |
|
</div> |
| 588 |
|
<?php |
| 589 |
|
$email_tags = ob_get_clean(); |
includes/emails/class-give-email-tags.php 1 location
|
@@ 243-247 (lines=5) @@
|
| 240 |
|
ob_start(); |
| 241 |
|
if ( count( $email_tags ) > 0 ) : ?> |
| 242 |
|
<div class="give-email-tags-wrap"> |
| 243 |
|
<?php foreach ( $email_tags as $email_tag ) : ?> |
| 244 |
|
<span class="give_<?php echo $email_tag['tag']; ?>_tag"> |
| 245 |
|
<code>{<?php echo $email_tag['tag']; ?>}</code> - <?php echo $email_tag['description']; ?> |
| 246 |
|
</span> |
| 247 |
|
<?php endforeach; ?> |
| 248 |
|
</div> |
| 249 |
|
<?php endif; |
| 250 |
|
|