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
placements-ad-label.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render ad label option for placements. |
| 4 | * |
| 5 | * @deprecated |
| 6 | * |
| 7 | * @var string $_placement_slug slug of the current placement. |
| 8 | * @var string $_label value of the label option. |
| 9 | * @package AdvancedAds |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <label title="<?php esc_html_e( 'default', 'advanced-ads' ); ?>"> |
| 14 | <input type="radio" name="advads[placements][<?php echo esc_attr( $_placement_slug ); ?>][options][ad_label]" value="default" <?php checked( $_label, 'default' ); ?>/> |
| 15 | <?php esc_html_e( 'default', 'advanced-ads' ); ?> |
| 16 | </label> |
| 17 | <label title="<?php esc_html_e( 'enabled', 'advanced-ads' ); ?>"> |
| 18 | <input type="radio" name="advads[placements][<?php echo esc_attr( $_placement_slug ); ?>][options][ad_label]" value="enabled" <?php checked( $_label, 'enabled' ); ?>/> |
| 19 | <?php esc_html_e( 'enabled', 'advanced-ads' ); ?> |
| 20 | </label> |
| 21 | <label title="<?php esc_html_e( 'disabled', 'advanced-ads' ); ?>"> |
| 22 | <input type="radio" name="advads[placements][<?php echo esc_attr( $_placement_slug ); ?>][options][ad_label]" value="disabled" <?php checked( $_label, 'disabled' ); ?>/> |
| 23 | <?php esc_html_e( 'disabled', 'advanced-ads' ); ?> |
| 24 | </label> |
| 25 |