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