ad-list
5 months ago
conditions
5 months ago
notices
1 year ago
upgrades
1 year ago
ad-conditions-string-operators.php
3 months ago
checks.php
3 months ago
index.php
7 years ago
modal.php
3 months ago
overview-addons-line.php
5 months ago
overview-notice-row.php
1 year ago
overview-widget.php
1 year ago
placement-form.php
1 year ago
placement-injection-top.php
1 year ago
placement-types.php
3 years ago
placements-ad-label.php
1 year ago
placements-inline-css.php
1 year ago
placements-item.php
1 year ago
post-list-filter-dropdown.php
5 months ago
support-callout.php
1 year ago
overview-addons-line.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render a row with add-on information on the Advanced Ads overview page |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * |
| 8 | * @var array $_addon add-on information. |
| 9 | */ |
| 10 | |
| 11 | ?> |
| 12 | <tr<?php echo isset( $_addon['class'] ) ? ' class="' . esc_attr( $_addon['class'] ) . '"' : ''; ?>> |
| 13 | <th> |
| 14 | <?php echo $_addon['title']; // phpcs:ignore ?> |
| 15 | </th> |
| 16 | <td> |
| 17 | <?php echo $_addon['desc']; // phpcs:ignore ?> |
| 18 | </td> |
| 19 | <td> |
| 20 | <?php if ( isset( $_addon['link'] ) && $_addon['link'] ) : ?> |
| 21 | <a class="button <?php echo ( isset( $_addon['link_primary'] ) ) ? 'button-primary' : 'button-secondary'; ?>" href="<?php echo esc_url( $_addon['link'] ); ?>" target="_blank"> |
| 22 | <?php echo esc_html( $link_title ); ?> |
| 23 | </a> |
| 24 | <?php endif; ?> |
| 25 | </td> |
| 26 | </tr> |
| 27 |