class-aawp-ad.php
1 week ago
class-aawp.php
1 year ago
class-admin-compatibility.php
1 week ago
class-capability-manager.php
1 year ago
class-compatibility.php
1 week ago
class-inline-js.php
1 year ago
class-peepso-ad.php
1 week ago
class-peepso.php
1 week ago
class-admin-compatibility.php
127 lines
| 1 | <?php |
| 2 | /** |
| 3 | * This class is responsible for fixing compatibility issues in admin area. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.2 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Compatibility; |
| 11 | |
| 12 | use AdvancedAds\Constants; |
| 13 | use AdvancedAds\Utilities\Conditional; |
| 14 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 15 | |
| 16 | defined( 'ABSPATH' ) || exit; |
| 17 | |
| 18 | /** |
| 19 | * Admin Compatibility. |
| 20 | */ |
| 21 | class Admin_Compatibility implements Integration_Interface { |
| 22 | |
| 23 | /** |
| 24 | * Hook into WordPress. |
| 25 | * |
| 26 | * @return void |
| 27 | */ |
| 28 | public function hooks(): void { |
| 29 | add_action( 'admin_enqueue_scripts', [ $this, 'dequeue_jnews_style' ], 100 ); |
| 30 | add_action( 'quads_meta_box_post_types', [ $this, 'fix_wpquadspro_issue' ], 11 ); |
| 31 | add_filter( 'wpml_admin_language_switcher_active_languages', [ $this, 'wpml_language_switcher' ] ); |
| 32 | |
| 33 | // Hide from WPML translation settings. |
| 34 | if ( defined( 'ICL_SITEPRESS_VERSION' ) ) { |
| 35 | add_filter( 'get_translatable_documents', [ $this, 'wpml_hide_from_translation' ], 10, 1 ); |
| 36 | } |
| 37 | |
| 38 | add_filter( 'admin_body_class', [ $this, 'add_advads_admin_body_class_wp7' ] ); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Adds a new class to admin body to fix CSS on version 7.0+ |
| 43 | * |
| 44 | * @param string $classes Space-separated string of admin body classes. |
| 45 | * |
| 46 | * @return string |
| 47 | */ |
| 48 | public function add_advads_admin_body_class_wp7( ?string $classes ): string { |
| 49 | global $wp_version; |
| 50 | |
| 51 | // Catch null values passed by 3rd party plugins to prevent TypeError on return. |
| 52 | $classes = $classes ?? ''; |
| 53 | |
| 54 | // Check if WordPress version is 7.0 or greater. |
| 55 | if ( version_compare( $wp_version, '7.0-alpha', '>=' ) && Conditional::is_screen_advanced_ads() ) { |
| 56 | $classes .= ' advads-wp-7-plus'; |
| 57 | } |
| 58 | |
| 59 | return $classes; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Fixes a WP QUADS PRO compatibility issue |
| 64 | * they inject their ad optimization meta box into our ad page, even though it is not a public post type |
| 65 | * using they filter, we remove AA from the list of post types they inject this box into |
| 66 | * |
| 67 | * @param array $allowed_post_types Array of allowed post types. |
| 68 | * |
| 69 | * @return array |
| 70 | */ |
| 71 | public function fix_wpquadspro_issue( $allowed_post_types ): array { |
| 72 | unset( $allowed_post_types['advanced_ads'] ); |
| 73 | |
| 74 | return $allowed_post_types; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Dequeue J-NEWS styles to prevent layout issues. |
| 79 | * |
| 80 | * @return void |
| 81 | */ |
| 82 | public function dequeue_jnews_style(): void { |
| 83 | if ( ! Conditional::is_screen_advanced_ads() || ! defined( 'JNEWS_THEME_URL' ) ) { |
| 84 | return; |
| 85 | } |
| 86 | |
| 87 | wp_dequeue_style( 'jnews-admin' ); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Show only all languages in language switcher on Advanced Ads pages if ads and groups are translated |
| 92 | * |
| 93 | * @param array $active_languages languages that can be used in language switcher. |
| 94 | * |
| 95 | * @return array |
| 96 | */ |
| 97 | public function wpml_language_switcher( $active_languages ): array { |
| 98 | global $sitepress; |
| 99 | |
| 100 | $screen = get_current_screen(); |
| 101 | |
| 102 | // If ad post type is translatable. |
| 103 | if ( isset( $screen->id ) && in_array( $screen->id, [ 'edit-advanced_ads', 'advanced_ads' ], true ) ) { |
| 104 | $translatable_documents = $sitepress->get_translatable_documents(); |
| 105 | if ( empty( $translatable_documents['advanced_ads'] ) ) { |
| 106 | return []; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | return $active_languages; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Hide post type from WPML translatable documents. |
| 115 | * |
| 116 | * @param array $documents Array of translatable documents. |
| 117 | * |
| 118 | * @return array Modified array. |
| 119 | */ |
| 120 | public function wpml_hide_from_translation( $documents ): array { |
| 121 | if ( isset( $documents[ Constants::POST_TYPE_PLACEMENT ] ) ) { |
| 122 | unset( $documents[ Constants::POST_TYPE_PLACEMENT ] ); |
| 123 | } |
| 124 | return $documents; |
| 125 | } |
| 126 | } |
| 127 |