EDD_SL_Plugin_Updater.php
7 years ago
ad-ajax.php
8 years ago
ad-debug.php
8 years ago
ad-model.php
8 years ago
ad-select.php
9 years ago
ad.php
7 years ago
ad_ajax_callbacks.php
7 years ago
ad_group.php
7 years ago
ad_placements.php
7 years ago
ad_type_abstract.php
8 years ago
ad_type_content.php
8 years ago
ad_type_dummy.php
8 years ago
ad_type_group.php
8 years ago
ad_type_image.php
7 years ago
ad_type_plain.php
7 years ago
checks.php
7 years ago
compatibility.php
7 years ago
display-conditions.php
7 years ago
filesystem.php
8 years ago
frontend_checks.php
7 years ago
plugin.php
7 years ago
upgrades.php
9 years ago
utils.php
7 years ago
visitor-conditions.php
7 years ago
widget.php
7 years ago
checks.php
274 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * checks for various things |
| 5 | * |
| 6 | * @since 1.6.9 |
| 7 | */ |
| 8 | class Advanced_Ads_Checks { |
| 9 | |
| 10 | /** |
| 11 | * Minimum required PHP version of Advanced Ads |
| 12 | */ |
| 13 | const MINIMUM_PHP_VERSION = 5.4; |
| 14 | |
| 15 | |
| 16 | /** |
| 17 | * show the list of potential issues |
| 18 | */ |
| 19 | public static function show_issues(){ |
| 20 | include_once ADVADS_BASE_PATH . '/admin/views/checks.php'; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * php version minimum 5.4 |
| 25 | * |
| 26 | * @return bool true if 5.4 and higher |
| 27 | */ |
| 28 | public static function php_version_minimum(){ |
| 29 | |
| 30 | if (version_compare(phpversion(), self::MINIMUM_PHP_VERSION, '>=')) { |
| 31 | return true; |
| 32 | } |
| 33 | |
| 34 | return false; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * caching used |
| 39 | * |
| 40 | * @return bool true if active |
| 41 | */ |
| 42 | public static function cache(){ |
| 43 | if ( ( defined( 'WP_CACHE' ) && WP_CACHE ) // general cache constant |
| 44 | || defined('W3TC') // W3 Total Cache |
| 45 | || function_exists( 'wp_super_cache_text_domain' ) // WP SUper Cache |
| 46 | || defined( 'WP_ROCKET_SLUG' ) //WP Rocket |
| 47 | || defined( 'WPFC_WP_CONTENT_DIR' ) //WP Fastest Cache |
| 48 | || class_exists( 'HyperCache', false ) // Hyper Cache |
| 49 | || defined( 'CE_CACHE_DIR' ) // Cache Enabler |
| 50 | ){ |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | return false; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * WordPress update available |
| 59 | * |
| 60 | * @return bool true if WordPress update available |
| 61 | */ |
| 62 | public static function wp_update_available(){ |
| 63 | |
| 64 | $update_data = wp_get_update_data(); |
| 65 | $count = absint( $update_data['counts']['wordpress'] ); |
| 66 | |
| 67 | if( $count ){ |
| 68 | return true; |
| 69 | } |
| 70 | |
| 71 | return false; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * any plugin updates available |
| 76 | * |
| 77 | * @return bool true if plugin updates are available |
| 78 | */ |
| 79 | public static function plugin_updates_available(){ |
| 80 | |
| 81 | // iterate throught the plugins and check if any of them is ours (i.e., starts with the string "advanced-ads") |
| 82 | $update_plugins = get_site_transient( 'update_plugins' ); |
| 83 | if ( ! empty( $update_plugins->response ) ) { |
| 84 | foreach( $update_plugins->response as $_key => $_responsive ){ |
| 85 | if( 0 === strpos( $_key, 'advanced-ads') ){ |
| 86 | return true; |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | return false; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * check if license keys are missing or invalid or expired |
| 96 | * |
| 97 | * @since 1.6.6 |
| 98 | * @update 1.6.9 moved from Advanced_Ads_Plugin |
| 99 | * @update 1.8.21 also check for expired licenses |
| 100 | * @return true if there are missing licenses |
| 101 | */ |
| 102 | public static function licenses_invalid(){ |
| 103 | |
| 104 | $add_ons = apply_filters( 'advanced-ads-add-ons', array() ); |
| 105 | |
| 106 | if( $add_ons === array() ) { |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | foreach( $add_ons as $_add_on_key => $_add_on ){ |
| 111 | $status = Advanced_Ads_Admin_Licenses::get_instance()->get_license_status( $_add_on['options_slug'] ); |
| 112 | |
| 113 | // check expiry date |
| 114 | $expiry_date = Advanced_Ads_Admin_Licenses::get_instance()->get_license_expires( $_add_on['options_slug'] ); |
| 115 | |
| 116 | if( $expiry_date && 'lifetime' !== $expiry_date && strtotime( $expiry_date ) < time() ){ |
| 117 | return true; |
| 118 | } |
| 119 | |
| 120 | // don’t check if license is valid |
| 121 | if( $status === 'valid' ) { |
| 122 | continue; |
| 123 | } |
| 124 | |
| 125 | // retrieve our license key from the DB |
| 126 | $licenses = Advanced_Ads_Admin_Licenses::get_instance()->get_licenses(); |
| 127 | |
| 128 | $license_key = isset($licenses[$_add_on_key]) ? $licenses[$_add_on_key] : false; |
| 129 | |
| 130 | if( ! $license_key || $status !== 'valid' ){ |
| 131 | return true; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | return false; |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Autoptimize plugin installed |
| 140 | * can change ad tags, especially inline css and scripts |
| 141 | * |
| 142 | * @link https://wordpress.org/plugins/autoptimize/ |
| 143 | * @return bool true if Autoptimize is installed |
| 144 | */ |
| 145 | public static function active_autoptimize(){ |
| 146 | |
| 147 | if( defined( 'AUTOPTIMIZE_CACHE_DIR' ) ){ |
| 148 | return true; |
| 149 | } |
| 150 | |
| 151 | return false; |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * check for additional conflicting plugins |
| 156 | * |
| 157 | * @return arr $plugins names of conflicting plugins |
| 158 | */ |
| 159 | public static function conflicting_plugins(){ |
| 160 | |
| 161 | $conflicting_plugins = array(); |
| 162 | |
| 163 | if( defined( 'Publicize_Base' ) ){ // JetPack Publicize module |
| 164 | $conflicting_plugins[] = 'Jetpack – Publicize'; |
| 165 | } |
| 166 | if( defined( 'PF__PLUGIN_DIR' ) ){ // Facebook Instant Articles & Google AMP Pages by PageFrog |
| 167 | $conflicting_plugins[] = 'Facebook Instant Articles & Google AMP Pages by PageFrog'; |
| 168 | } |
| 169 | if( defined( 'GT_VERSION' ) ){ // GT ShortCodes |
| 170 | $conflicting_plugins[] = 'GT ShortCodes'; |
| 171 | } |
| 172 | if( class_exists( 'ITSEC_Core', false ) && defined ( 'AAP_VERSION' ) ){ // iThemes Security, but only if Pro is enabled |
| 173 | $conflicting_plugins[] = 'iThemes Security'; |
| 174 | } |
| 175 | |
| 176 | return $conflicting_plugins; |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * check if any of the global hide ads options is set |
| 181 | * ignore feed setting, because it is standard |
| 182 | * |
| 183 | * @since 1.7.10 |
| 184 | * @return bool |
| 185 | */ |
| 186 | public static function ads_disabled(){ |
| 187 | $options = Advanced_Ads::get_instance()->options(); |
| 188 | if( isset( $options['disabled-ads'] ) && is_array( $options['disabled-ads'] ) ){ |
| 189 | foreach( $options['disabled-ads'] as $_key => $_value ){ |
| 190 | // don’t warn if "feed" and "404" option are enabled, because they are normally not critical |
| 191 | if( !empty( $_value ) && !in_array($_key, array( 'feed', '404') ) ){ |
| 192 | return true; |
| 193 | } |
| 194 | } |
| 195 | } |
| 196 | return false; |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * check for required php extensions |
| 201 | * |
| 202 | * @since 1.8.21 |
| 203 | * @return bool |
| 204 | */ |
| 205 | public static function php_extensions(){ |
| 206 | |
| 207 | $missing_extensions = array(); |
| 208 | |
| 209 | if( !extension_loaded('dom') ){ |
| 210 | $missing_extensions[] = 'dom'; |
| 211 | } |
| 212 | |
| 213 | if( !extension_loaded('xml') ){ |
| 214 | $missing_extensions[] = 'xml'; |
| 215 | } |
| 216 | |
| 217 | return $missing_extensions; |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Get the list of Advanced Ads constant defined by the user. |
| 222 | * |
| 223 | * @return array |
| 224 | */ |
| 225 | public static function get_defined_constants() { |
| 226 | $constants = apply_filters( 'advanced-ads-constants', array( |
| 227 | 'ADVADS_ADS_DISABLED', |
| 228 | 'ADVADS_ALLOW_ADSENSE_ON_404', |
| 229 | 'ADVADS_DISABLE_RESPONSIVE_IMAGES', |
| 230 | 'ADVANCED_ADS_AD_DEBUG_FOR_ADMIN_ONLY', |
| 231 | 'ADVANCED_ADS_DISABLE_ANALYTICS_ANONYMIZE_IP', |
| 232 | 'ADVANCED_ADS_DISABLE_CHANGE', |
| 233 | 'ADVANCED_ADS_DISABLE_CODE_HIGHLIGHTING', |
| 234 | 'ADVANCED_ADS_DISABLE_FRONTEND_AD_WEIGHT_UPDATE', |
| 235 | 'ADVANCED_ADS_DISABLE_SHORTCODE_BUTTON', |
| 236 | 'ADVANCED_ADS_DISALLOW_PHP', |
| 237 | 'ADVANCED_ADS_ENABLE_REVISIONS', |
| 238 | 'ADVANCED_ADS_PRO_CUSTOM_POSITION_MOVE_INTO_HIDDEN', |
| 239 | 'ADVANCED_ADS_PRO_PAGE_IMPR_EXDAYS', |
| 240 | 'ADVANCED_ADS_PRO_REFERRER_EXDAYS', |
| 241 | 'ADVANCED_ADS_RESPONSIVE_DISABLE_BROWSER_WIDTH', |
| 242 | 'ADVANCED_ADS_SUPPRESS_PLUGIN_ERROR_NOTICES', |
| 243 | 'ADVANCED_ADS_TRACKING_DEBUG', |
| 244 | 'ADVANCED_ADS_TRACKING_NO_HOURLY_LIMIT', |
| 245 | ) ); |
| 246 | |
| 247 | $result = array(); |
| 248 | foreach ( $constants as $constant ) { |
| 249 | if ( defined( $constant ) ) { |
| 250 | $result[] = $constant; |
| 251 | } |
| 252 | } |
| 253 | return $result; |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * check for potential jQuery errors |
| 258 | * only script, so no return, but direct output |
| 259 | * |
| 260 | */ |
| 261 | public static function jquery_ui_conflict(){ |
| 262 | ?> |
| 263 | <div id="advads-jqueryui-conflict-message" style="display:none;" class="message error"><p><?php printf( __( 'Possible conflict between jQueryUI library, used by Advanced Ads and other libraries (probably <a href="%s">Twitter Bootstrap</a>). This might lead to misfortunate formats in forms, but should not damage features.', 'advanced-ads' ), 'http://getbootstrap.com/javascript/#js-noconflict' ); ?></p></div> |
| 264 | <script>// string from jquery-ui source code |
| 265 | jQuery(document).ready(function(){ |
| 266 | var needle = 'var g="string"==typeof f,h=c.call(arguments,1)'; |
| 267 | if ( jQuery.fn.button.toString().indexOf( needle ) === -1 || jQuery.fn.tooltip.toString().indexOf( needle ) === -1 ) { |
| 268 | jQuery( '#advads-jqueryui-conflict-message' ).show(); |
| 269 | } |
| 270 | }); |
| 271 | </script><?php |
| 272 | } |
| 273 | } |
| 274 |