| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/domains/siparent/wp-content/plugins/advanced-ads-pro/ |
Upload File : |
<?php
/**
* Advanced Ads Pro
*
* @wordpress-plugin
* Plugin Name: Advanced Ads Pro
* Plugin URI: https://wpadvancedads.com/add-ons/advanced-ads-pro/
* Description: Advanced features to boost your ad revenue.
* Version: 2.15.0
* Author: Advanced Ads GmbH
* Author URI: https://wpadvancedads.com
* Text Domain: advanced-ads-pro
* Domain Path: /languages
*/
if ( defined( 'AAP_SLUG' ) ) {
return;
}
define( 'AAP_SLUG', 'advanced-ads-pro' );
define( 'AAP_PATH', __DIR__ );
define( 'AAP_BASE', plugin_basename( __FILE__ ) ); // Plugin base as used by WordPress to identify it.
define( 'AAP_BASE_PATH', plugin_dir_path( __FILE__ ) );
define( 'AAP_BASE_URL', plugin_dir_url( __FILE__ ) );
define( 'AAP_BASE_DIR', dirname( AAP_BASE ) ); // Directory of the plugin without any paths.
define( 'AAP_VERSION', '2.15.0' );
define( 'AAP_PLUGIN_NAME', 'Advanced Ads Pro' );
require_once AAP_BASE_PATH . 'lib/autoload.php';
// Autoload and activate.
Advanced_Ads_Pro::get_instance();
register_activation_hook( __FILE__, array( 'Advanced_Ads_Pro', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Advanced_Ads_Pro', 'deactivate' ) );
add_action( 'wpmu_new_blog', array( 'Advanced_Ads_Pro', 'activate_new_site' ) );