Advanced_Ads_Modal.php
2 years ago
EDD_SL_Plugin_Updater.php
4 years ago
ad-ajax.php
2 years ago
ad-debug.php
2 years ago
ad-expiration.php
3 years ago
ad-health-notices.php
2 years ago
ad-model.php
2 years ago
ad-select.php
3 years ago
ad.php
2 years ago
ad_ajax_callbacks.php
2 years ago
ad_group.php
2 years ago
ad_placements.php
2 years ago
ad_type_abstract.php
2 years ago
ad_type_content.php
2 years ago
ad_type_dummy.php
3 years ago
ad_type_group.php
2 years ago
ad_type_image.php
2 years ago
ad_type_plain.php
2 years ago
checks.php
2 years ago
class-translation-promo.php
3 years ago
compatibility.php
2 years ago
display-conditions.php
2 years ago
filesystem.php
3 years ago
frontend_checks.php
2 years ago
in-content-injector.php
2 years ago
inline-css.php
2 years ago
plugin.php
2 years ago
upgrades.php
2 years ago
utils.php
3 years ago
visitor-conditions.php
2 years ago
widget.php
2 years ago
ad_type_group.php
117 lines
| 1 | <?php |
| 2 | |
| 3 | use AdvancedAds\Entities; |
| 4 | |
| 5 | /** |
| 6 | * Advanced Ads Plain Ad Type |
| 7 | * |
| 8 | * @package Advanced_Ads |
| 9 | * @author Thomas Maier <support@wpadvancedads.com> |
| 10 | * @license GPL-2.0+ |
| 11 | * @link https://wpadvancedads.com |
| 12 | * @copyright 2014-2016 Thomas Maier, Advanced Ads GmbH |
| 13 | * |
| 14 | * Class containing information about the plain text/code ad type |
| 15 | * |
| 16 | * see ad-type-content.php for a better sample on ad type |
| 17 | * |
| 18 | * @since 1.7.1.1 |
| 19 | * |
| 20 | */ |
| 21 | class Advanced_Ads_Ad_Type_Group extends Advanced_Ads_Ad_Type_Abstract{ |
| 22 | |
| 23 | /** |
| 24 | * ID - internal type of the ad type |
| 25 | * |
| 26 | */ |
| 27 | public $ID = 'group'; |
| 28 | |
| 29 | /** |
| 30 | * Set basic attributes |
| 31 | */ |
| 32 | public function __construct() { |
| 33 | $this->title = __( 'Ad Group', 'advanced-ads' ); |
| 34 | $this->description = __( 'Choose an existing ad group. Use this type when you want to assign the same display and visitor conditions to all ads in that group.', 'advanced-ads' ); |
| 35 | $this->parameters = [ |
| 36 | 'group_id' => 0 |
| 37 | ]; |
| 38 | |
| 39 | // on save, remove the group in which the ad is itself to prevent infinite loops |
| 40 | add_action( 'save_post_advanced_ads', [$this, 'remove_from_ad_group'], 1 ); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * When saving the ad, remove it from the ad group, if this is the group assigned as ad content |
| 45 | * see also: /admin/includes/class-ad-groups-list.php::update_groups() |
| 46 | * |
| 47 | * @param integer $post_id ID of the post. |
| 48 | */ |
| 49 | public function remove_from_ad_group( $post_id ){ |
| 50 | |
| 51 | // phpcs:disable WordPress.Security.NonceVerification.Missing -- nonce is verified before calling the hook |
| 52 | if( ! isset( $_POST['post_type'] ) || $_POST['post_type'] !== Entities::POST_TYPE_AD ){ |
| 53 | return; |
| 54 | } |
| 55 | |
| 56 | if( isset( $_POST[ 'advanced_ad' ]['output']['group_id'] ) ){ |
| 57 | $group_id = (int) $_POST['advanced_ad']['output']['group_id']; |
| 58 | if( isset( $_POST['tax_input']['advanced_ads_groups'] ) ){ |
| 59 | if(( $key = array_search( $group_id, $_POST['tax_input']['advanced_ads_groups'])) !== false ) { |
| 60 | $res = wp_remove_object_terms( $post_id, $group_id, Entities::TAXONOMY_AD_GROUP ); |
| 61 | unset( $_POST['tax_input']['advanced_ads_groups'][$key] ); |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | // phpcs:enable |
| 66 | } |
| 67 | |
| 68 | |
| 69 | /** |
| 70 | * Output for the ad parameters metabox |
| 71 | * |
| 72 | * this will be loaded using ajax when changing the ad type radio buttons |
| 73 | * echo the output right away here |
| 74 | * name parameters must be in the "advanced_ads" array |
| 75 | * |
| 76 | * @param obj $ad ad object |
| 77 | */ |
| 78 | public function render_parameters($ad){ |
| 79 | |
| 80 | $group_id = ( isset( $ad->output['group_id'] ) ) ? $ad->output['group_id'] : ''; |
| 81 | |
| 82 | $select = []; |
| 83 | $model = Advanced_Ads::get_instance()->get_model(); |
| 84 | |
| 85 | // load all ad groups |
| 86 | $groups = $model->get_ad_groups(); |
| 87 | |
| 88 | if( ! is_array( $groups ) || ! count( $groups ) ){ |
| 89 | return; |
| 90 | } |
| 91 | |
| 92 | ?><label for="advads-group-id" class="label"><?php _e('ad group', 'advanced-ads'); ?></label><div><select name="advanced_ad[output][group_id]" id="advads-group-id"><?php |
| 93 | |
| 94 | foreach ( $groups as $_group ) { |
| 95 | ?><option value="<?php echo $_group->term_id; ?>" <?php selected( $_group->term_id, $group_id ); ?>><?php echo $_group->name; ?></option><?php |
| 96 | } |
| 97 | |
| 98 | ?></select></div><hr/><?php |
| 99 | |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Prepare the ads frontend output |
| 104 | * |
| 105 | * @param obj $ad ad object |
| 106 | * @return str $content ad content prepared for frontend output |
| 107 | */ |
| 108 | public function prepare_output($ad){ |
| 109 | $group_id = ( isset( $ad->output['group_id'] ) ) ? absint( $ad->output['group_id'] ) : 0; |
| 110 | |
| 111 | if( $group_id ){ |
| 112 | return get_ad_group( $group_id, $ad->args ); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | } |
| 117 |