Current Path: > home > codekrsu > > escapematrixonline.com > wp-content > plugins > ezoic-integration
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
admin | Directory | - | - | |
ezoic-cache-handle | Directory | - | - | |
includes | Directory | - | - | |
languages | Directory | - | - | |
public | Directory | - | - | |
CHANGELOG.md | File | 317 bytes | March 02 2022 04:34:12. | |
LICENSE.txt | File | 18091 bytes | April 21 2018 02:26:40. | |
README.txt | File | 6745 bytes | July 17 2025 21:20:00. | |
ezoic-integration.php | File | 4274 bytes | July 17 2025 21:20:00. | |
ezwp.pot | File | 954 bytes | April 21 2018 02:26:40. | |
index.php | File | 26 bytes | April 21 2018 02:26:40. | |
uninstall.php | File | 1045 bytes | April 21 2018 02:26:40. |
<?php namespace Ezoic_Namespace; /** * The plugin bootstrap file * * This file is read by WordPress to generate the plugin information in the plugin * admin area. This file also includes all of the dependencies used by the plugin, * registers the activation and deactivation functions, and defines a function * that starts the plugin. * * @link https://ezoic.com * @since 1.0.0 * @package Ezoic_Integration * * @wordpress-plugin * Plugin Name: Ezoic * Plugin URI: https://ezoic.com/ * Description: Easily integrate and connect with Ezoic using WordPress. In order to activate this plugin properly you will need an Ezoic account. You can create an account here: https://pubdash.ezoic.com/join * Version: 2.16.3 * Author: Ezoic Inc. * Author URI: https://ezoic.com/ * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: ezoic-integration * Domain Path: /languages */ // If this file is called directly, abort. if (! defined('WPINC')) { die; } /** * Plugin Constants */ if (! defined('EZOIC_INTEGRATION_VERSION')) { define('EZOIC_INTEGRATION_VERSION', '2.16.3'); // also update version in 'class-ezoic-integration-factory.php'. } define('EZOIC__PLUGIN_NAME', 'Ezoic'); define('EZOIC__PLUGIN_SLUG', dirname(plugin_basename(__FILE__))); define('EZOIC__PLUGIN_DIR', plugin_dir_path(__FILE__)); define('EZOIC__PLUGIN_FILE', plugin_basename(__FILE__)); define('EZOIC__PLUGIN_URL', plugin_dir_url(__FILE__)); define('EZOIC__SITE_NAME', 'Ezoic'); define('EZOIC__SITE_LOGIN', 'https://login.ezoic.com/'); define('EZOIC_ADSTXT_MANAGER__PLUGIN_NAME', 'Ads.txt Manager'); // standalone ads.txt manager plugin name define('EZOIC_SA_SCRIPT_URL', '//www.ezojs.com/ezoic/sa.min.js'); define('EZOIC_CMP_SCRIPT_URL', 'https://cmp.gatekeeperconsent.com/min.js'); define('EZOIC_GATEKEEPER_SCRIPT_URL', 'https://the.gatekeeperconsent.com/cmp.min.js'); define('EZOIC_ADSTXT_MANAGER__SITE', 'https://www.adstxtmanager.com/'); define('EZOIC_ADSTXT_MANAGER__SITE_LOGIN', 'https://svc.adstxtmanager.com/auth/login'); if (!defined('EZOIC_DEBUG')) { define('EZOIC_DEBUG', isset($_GET['ez_wp_debug']) && $_GET['ez_wp_debug'] == '1'); } if (!defined('EZOIC__DISABLE')) { define('EZOIC__DISABLE', (isset($_GET['ez_wp_force_static']) && $_GET['ez_wp_force_static'] == '1') || (isset($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT'] === 'EzoicStatic')); } if (!defined('EZOIC__DISABLE__FEATURE') && isset($_GET['ez_wp_disable_feature'])) { define('EZOIC__DISABLE__FEATURE', array_filter(explode(',', $_GET['ez_wp_disable_feature']))); } /** * Current API version. * Starts at version 1.0.0 * Rename this constant if we change anything about what the api accepts */ if (! defined('EZOIC_API_VERSION')) { define('EZOIC_API_VERSION', '1.0.0'); } /** * The code that runs during plugin activation. * This action is documented in includes/class-ezoic-integration-activator.php */ function activate_ezoic_integration() { require_once EZOIC__PLUGIN_DIR . 'includes/class-ezoic-integration-activator.php'; Ezoic_Integration_Activator::activate(); } /** * The code that runs during plugin deactivation. * This action is documented in includes/class-ezoic-integration-deactivator.php */ function deactivate_ezoic_integration() { require_once EZOIC__PLUGIN_DIR . 'includes/class-ezoic-integration-deactivator.php'; Ezoic_Integration_Deactivator::deactivate(); } register_activation_hook(__FILE__, 'Ezoic_Namespace\activate_ezoic_integration'); register_deactivation_hook(__FILE__, 'Ezoic_Namespace\deactivate_ezoic_integration'); /** * The core plugin class that is used to define internationalization, * admin-specific hooks, and public-facing site hooks. */ require EZOIC__PLUGIN_DIR . 'includes/class-ezoic-integration.php'; /** * Begins execution of the plugin. * * Since everything within the plugin is registered via hooks, * then kicking off the plugin from this point in the file does * not affect the page life cycle. * * @since 1.0.0 */ function run_ezoic_integration() { $ezoic_integration = new Ezoic_Integration(); $ezoic_integration->run(); } run_ezoic_integration();
SILENT KILLER Tool