columns
3 months ago
create-modal
1 year ago
edit-modal
2 months ago
bulk-edit.php
1 year ago
filters.php
1 day ago
quick-edit.php
1 year ago
bulk-edit.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Render Placement Bulk Edit Form |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 2.0.0 |
| 8 | */ |
| 9 | |
| 10 | ?> |
| 11 | <fieldset class="inline-edit-col-right advanced-ads advads-bulk-edit"> |
| 12 | <div class="inline-edit-col"> |
| 13 | <div class="wp-clearfix"> |
| 14 | <label> |
| 15 | <span class="title"><?php esc_html_e( 'Ad Label', 'advanced-ads' ); ?></span> |
| 16 | <select name="ad_label"> |
| 17 | <option value="">— <?php esc_html_e( 'No Change', 'advanced-ads' ); ?> —</option> |
| 18 | <option value="default"><?php esc_html_e( 'Default', 'advanced-ads' ); ?></option> |
| 19 | <option value="enabled"><?php esc_html_e( 'Enabled', 'advanced-ads' ); ?></option> |
| 20 | <option value="disabled"><?php esc_html_e( 'Disabled', 'advanced-ads' ); ?></option> |
| 21 | </select> |
| 22 | </label> |
| 23 | </div> |
| 24 | </div> |
| 25 | </fieldset> |
| 26 |