column-adsense.php
1 year ago
column-date.php
1 year ago
column-debug.php
1 year ago
column-description.php
1 year ago
column-displayonce.php
1 year ago
column-privacyignore.php
1 year ago
column-shortcode.php
1 year ago
column-size.php
1 year ago
column-timing.php
1 year ago
column-type.php
1 year ago
column-used.php
1 week ago
icon-status.php
1 year ago
icon-status.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render the tooltip for ad status on the group overview page. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | * |
| 9 | * @var string[] $status_strings |
| 10 | * @var string $status_type |
| 11 | */ |
| 12 | |
| 13 | ?> |
| 14 | <span class="advads-help advads-help-no-icon advads-ad-status-icon advads-ad-status-icon-<?php echo esc_attr( $status_type ); ?>"> |
| 15 | <span class="advads-tooltip"> |
| 16 | <?php echo wp_kses( implode( '<br/>', $status_strings ), [ 'br' => [] ] ); ?> |
| 17 | </span> |
| 18 | </span> |
| 19 |