notices
9 years ago
ad-display-metabox.php
8 years ago
ad-group-edit.php
9 years ago
ad-group-list-ads.php
9 years ago
ad-group-list-form-row.php
9 years ago
ad-group-list-header.php
10 years ago
ad-group-list-row.php
10 years ago
ad-group.php
9 years ago
ad-info-after-textarea.php
9 years ago
ad-info-bottom.php
8 years ago
ad-info-top.php
8 years ago
ad-info.php
10 years ago
ad-list-details-column.php
10 years ago
ad-list-filters.php
9 years ago
ad-list-no-ads.php
8 years ago
ad-list-timing-column.php
8 years ago
ad-main-metabox.php
9 years ago
ad-output-metabox.php
9 years ago
ad-parameters-metabox.php
9 years ago
ad-parameters-size.php
9 years ago
ad-submitbox-meta.php
9 years ago
ad-visitor-metabox.php
8 years ago
checks.php
8 years ago
feedback-disable.php
8 years ago
index.php
12 years ago
overview-addons-line.php
8 years ago
overview-widget.php
8 years ago
overview.php
8 years ago
pitch-bundle.php
8 years ago
pitch-pro-tab.php
8 years ago
pitch-tracking.php
8 years ago
placement-injection-top.php
8 years ago
placements-ad-label-position.php
9 years ago
placements-ad-label.php
9 years ago
placements-content-index.php
9 years ago
placements-item.php
9 years ago
placements.php
8 years ago
post-ad-settings-metabox.php
9 years ago
setting-license.php
8 years ago
setting-target.php
8 years ago
settings-disable-ads.php
10 years ago
settings.php
8 years ago
support.php
8 years ago
placements-item.php
17 lines
| 1 | <select id="advads-placements-item-<?php echo $_placement_slug; ?>" name="advads[placements][<?php echo $_placement_slug; ?>][item]"> |
| 2 | <option value=""><?php _e( '--not selected--', 'advanced-ads' ); ?></option> |
| 3 | <?php if ( isset($items['groups']) ) : ?> |
| 4 | <optgroup label="<?php _e( 'Ad Groups', 'advanced-ads' ); ?>"> |
| 5 | <?php foreach ( $items['groups'] as $_item_id => $_item_title ) : ?> |
| 6 | <option value="<?php echo $_item_id; ?>" <?php if ( isset($_placement['item']) ) { selected( $_item_id, $_placement['item'] ); } ?>><?php echo $_item_title; ?></option> |
| 7 | <?php endforeach; ?> |
| 8 | </optgroup> |
| 9 | <?php endif; ?> |
| 10 | <?php if ( isset($items['ads']) ) : ?> |
| 11 | <optgroup label="<?php _e( 'Ads', 'advanced-ads' ); ?>"> |
| 12 | <?php foreach ( $items['ads'] as $_item_id => $_item_title ) : ?> |
| 13 | <option value="<?php echo $_item_id; ?>" <?php if ( isset($_placement['item']) ) { selected( $_item_id, $_placement['item'] ); } ?>><?php echo $_item_title; ?></option> |
| 14 | <?php endforeach; ?> |
| 15 | </optgroup> |
| 16 | <?php endif; ?> |
| 17 | </select> |