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
column-timing.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render content of the Ad Schedule column in the ad overview list |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | * |
| 9 | * @var string $html_classes Additonal values for class attribute. |
| 10 | * @var string[] $status_strings Status string. |
| 11 | * @var string $content_after HTML to load after the schedule content. |
| 12 | */ |
| 13 | |
| 14 | ?> |
| 15 | <fieldset class="inline-edit-col-left"> |
| 16 | <div class="inline-edit-col <?php echo esc_attr( $html_classes ); ?>"> |
| 17 | <p> |
| 18 | <?php echo wp_kses( implode( '<br/>', $status_strings ), [ 'br' => [] ] ); ?> |
| 19 | </p> |
| 20 | <?php echo $content_after; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 21 | </div> |
| 22 | </fieldset> |
| 23 |