| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/pwan.uk/wwwroot - Copy (2)/wp-content/plugins/advanced-ads/ |
Upload File : |
<?php
/**
* Advanced Ads.
*
* @package Advanced_Ads
* @author Advanced Ads GmbH <support@wpadvancedads.com>
* @license GPL-2.0+
* @link https://wpadvancedads.com
* @copyright since 2013 Thomas Maier, Advanced Ads GmbH
*
* @wordpress-plugin
* Plugin Name: Advanced Ads
* Plugin URI: https://wpadvancedads.com
* Description: Manage and optimize your ads in WordPress
* Version: 1.52.3
* Author: Advanced Ads GmbH
* Author URI: https://wpadvancedads.com
* Text Domain: advanced-ads
* Domain Path: /languages
* License: GPL-2.0+
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
*/
// Early bail!!
if ( ! function_exists( 'add_filter' ) ) {
header( 'Status: 403 Forbidden' );
header( 'HTTP/1.1 403 Forbidden' );
exit();
}
if ( defined( 'ADVADS_FILE' ) ) {
return;
}
define( 'ADVADS_FILE', __FILE__ );
define( 'ADVADS_VERSION', '1.52.3' );
// Load the autoloader.
require_once __DIR__ . '/includes/class-autoloader.php';
\AdvancedAds\Autoloader::get()->initialize();
/**
* Returns the main instance of Advanced Ads.
*
* @since 1.46.0
* @return \AdvancedAds\Plugin
*/
function wp_advads() {
return \AdvancedAds\Plugin::get();
}
// Start it.
wp_advads();