EDD_SL_Plugin_Updater.php
6 years ago
ad-ajax.php
6 years ago
ad-debug.php
8 years ago
ad-health-notices.php
6 years ago
ad-model.php
8 years ago
ad-select.php
9 years ago
ad.php
6 years ago
ad_ajax_callbacks.php
6 years ago
ad_group.php
6 years ago
ad_placements.php
6 years ago
ad_type_abstract.php
8 years ago
ad_type_content.php
6 years ago
ad_type_dummy.php
6 years ago
ad_type_group.php
8 years ago
ad_type_image.php
6 years ago
ad_type_plain.php
6 years ago
checks.php
6 years ago
compatibility.php
6 years ago
display-conditions.php
6 years ago
filesystem.php
8 years ago
frontend-notices.php
6 years ago
frontend_checks.php
6 years ago
plugin.php
6 years ago
upgrades.php
6 years ago
utils.php
6 years ago
visitor-conditions.php
6 years ago
widget.php
6 years ago
compatibility.php
188 lines
| 1 | <?php |
| 2 | |
| 3 | class Advanced_Ads_Compatibility { |
| 4 | |
| 5 | /** |
| 6 | * Advanced_Ads_Compatibility constructor. |
| 7 | */ |
| 8 | public function __construct() { |
| 9 | // Elementor plugin. |
| 10 | if ( defined( 'ELEMENTOR_VERSION' ) ) { |
| 11 | add_filter( |
| 12 | 'advanced-ads-placement-content-injection-xpath', |
| 13 | array( |
| 14 | $this, |
| 15 | 'content_injection_elementor', |
| 16 | ), |
| 17 | 10, |
| 18 | 1 |
| 19 | ); |
| 20 | } |
| 21 | if ( defined( 'WP_ROCKET_VERSION' ) ) { |
| 22 | add_filter( 'rocket_excluded_inline_js_content', array( $this, 'exclude_inline_js' ) ); |
| 23 | } |
| 24 | // WPML. |
| 25 | add_filter( 'wpml_admin_language_switcher_active_languages', array( $this, 'wpml_language_switcher' ) ); |
| 26 | // Wordpress SEO by Yoast. |
| 27 | add_filter( 'wpseo_sitemap_entry', array( $this, 'wordpress_seo_noindex_ad_attachments' ), 10, 3 ); |
| 28 | // Add shortcode for MailPoet. |
| 29 | add_filter( 'mailpoet_newsletter_shortcode', array( $this, 'mailpoet_ad_shortcode' ), 10, 5 ); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Modify xPath expression for Elementor plugin. |
| 34 | * The plugin does not wrap newly created text in 'p' tags. |
| 35 | * |
| 36 | * @param str $tag xpath tag. |
| 37 | * |
| 38 | * @return xPath expression |
| 39 | */ |
| 40 | public function content_injection_elementor( $tag ) { |
| 41 | if ( 'p' === $tag ) { |
| 42 | // 'p' or 'div.elementor-widget-text-editor' without nested 'p' |
| 43 | $tag = "*[self::p or self::div[@class and contains(concat(' ', normalize-space(@class), ' '), ' elementor-widget-text-editor ') and not(descendant::p)]]"; |
| 44 | } |
| 45 | |
| 46 | return $tag; |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Prevent the 'advanced_ads_ready' function declaration from being merged with other JS |
| 51 | * and outputted into the footer. This is needed because WP Rocket does not output all |
| 52 | * the code that depends on this function into the footer. |
| 53 | * |
| 54 | * @param array $pattern Patterns to match in inline JS content. |
| 55 | * |
| 56 | * @return array |
| 57 | */ |
| 58 | public function exclude_inline_js( $pattern ) { |
| 59 | $pattern[] = 'advanced_ads_ready'; |
| 60 | |
| 61 | return $pattern; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Compatibility with WPML |
| 66 | * show only all languages in language switcher on Advanced Ads pages if ads and groups are translated |
| 67 | * |
| 68 | * @param array $active_languages languages that can be used in language switcher. |
| 69 | * |
| 70 | * @return array |
| 71 | */ |
| 72 | public function wpml_language_switcher( $active_languages ) { |
| 73 | global $sitepress; |
| 74 | $screen = get_current_screen(); |
| 75 | if ( ! isset( $screen->id ) ) { |
| 76 | return $active_languages; |
| 77 | } |
| 78 | |
| 79 | switch ( $screen->id ) { |
| 80 | // check if we are on a group edit page and ad group translations are disabled. |
| 81 | case 'advanced-ads_page_advanced-ads-groups': |
| 82 | $translatable_taxonomies = $sitepress->get_translatable_taxonomies(); |
| 83 | if ( ! is_array( $translatable_taxonomies ) || ! in_array( 'advanced_ads_groups', $translatable_taxonomies, true ) ) { |
| 84 | return array(); |
| 85 | } |
| 86 | break; |
| 87 | // check if Advanced Ads ad post type is translatable. |
| 88 | case 'edit-advanced_ads': // overview page. |
| 89 | case 'advanced_ads': // edit page. |
| 90 | $translatable_documents = $sitepress->get_translatable_documents(); |
| 91 | if ( empty( $translatable_documents['advanced_ads'] ) ) { |
| 92 | return array(); |
| 93 | } |
| 94 | break; |
| 95 | // always show all languages on Placements page. |
| 96 | case 'advanced-ads_page_advanced-ads-placements': |
| 97 | return array(); |
| 98 | } |
| 99 | |
| 100 | return $active_languages; |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Wordpress SEO: remove attachments attached to ads from `/attachment-sitemap.xml`. |
| 105 | * |
| 106 | * @param array $url Array of URL parts. |
| 107 | * @param string $type URL type. |
| 108 | * @param obj $post WP_Post object of attachment. |
| 109 | * @return array/bool Unmodified array of URL parts or false to remove URL. |
| 110 | */ |
| 111 | public function wordpress_seo_noindex_ad_attachments( $url, $type, $post ) { |
| 112 | if ( 'post' !== $type ) { |
| 113 | return $url; |
| 114 | } |
| 115 | |
| 116 | static $ad_ids = null; |
| 117 | if ( null === $ad_ids ) { |
| 118 | $ad_ids = Advanced_Ads::get_instance()->get_model()->get_ads( array( |
| 119 | 'post_status' => 'any', |
| 120 | 'fields' => 'ids' |
| 121 | ) ); |
| 122 | } |
| 123 | |
| 124 | if ( isset( $post->post_parent ) && in_array( $post->post_parent, $ad_ids, true ) ) { |
| 125 | return false; |
| 126 | } |
| 127 | |
| 128 | return $url; |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Display an ad or ad group in a newsletter created by MailPoet. |
| 133 | * e.g., [custom:ad:123] to display ad with the ID 123 |
| 134 | * [custom:ad_group:345] to display ad group with the ID 345 |
| 135 | * |
| 136 | * @param string $shortcode |
| 137 | * @param $newsletter unused |
| 138 | * @param $subscriber unused |
| 139 | * @param $queue unused |
| 140 | * @param $newsletter_body unused |
| 141 | * |
| 142 | * @return string |
| 143 | */ |
| 144 | function mailpoet_ad_shortcode( $shortcode, $newsletter, $subscriber, $queue, $newsletter_body ) { |
| 145 | // display an ad group. |
| 146 | if ( 0 === strpos( $shortcode, '[custom:ad_group:' ) ) { |
| 147 | // get ad group ID. |
| 148 | preg_match( '/\d+/', $shortcode, $matches ); |
| 149 | $group_id = $matches[0]; |
| 150 | |
| 151 | // is returning an empty string when the ad group is not found good UI? |
| 152 | if ( empty( $group_id ) ) { |
| 153 | return ''; |
| 154 | } |
| 155 | |
| 156 | // only display if the ad group type could work, i.e. default (random) and ordered. |
| 157 | $ad_group = new Advanced_Ads_Group( $group_id ); |
| 158 | if ( isset( $ad_group->type ) && in_array( $ad_group->type, array( 'default', 'ordered' ), true ) ) { |
| 159 | return get_ad_group( $group_id ); |
| 160 | } |
| 161 | |
| 162 | return ''; |
| 163 | |
| 164 | // display individual ad. |
| 165 | } elseif ( 0 === strpos( $shortcode, '[custom:ad:' ) ) { |
| 166 | // get ad ID. |
| 167 | preg_match( '/\d+/', $shortcode, $matches ); |
| 168 | $ad_id = $matches[0]; |
| 169 | |
| 170 | // is returning an empty string when the ad is not found good UI? |
| 171 | if ( empty( $ad_id ) ) { |
| 172 | return ''; |
| 173 | } |
| 174 | |
| 175 | $ad = new Advanced_Ads_Ad( $ad_id ); |
| 176 | // only display if the ad type could work, i.e. plain text and image ads. |
| 177 | if ( isset( $ad->type ) && in_array( $ad->type, array( 'plain', 'image' ), true ) ) { |
| 178 | return get_ad( $ad_id ); |
| 179 | } |
| 180 | |
| 181 | return ''; |
| 182 | } else { |
| 183 | // always return the shortcode if it doesn't match your own! |
| 184 | return $shortcode; |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 |