GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin.php |
<?php
/**
* Plugin Name: Oxygen
* Plugin URI: https://oxygenbuilder.com/
* Description: Bringing website development superpowers to WordPress.
* Author: Oxygen
* Version: 6.0.0
* Author URI: https://oxygenbuilder.com/
* Text Domain: breakdance
* Domain Path: /languages
*/
define('BREAKDANCE_MODE', 'oxygen');
/*
to end users: editing BREAKDANCE_MODE on your own will result in site breakage
and potential for data loss that can't be reversed without a backup.
there's a lot of oxygen and breakdance-specific code that is loaded by our
build system simply setting this to oxygen on a breakdance install won't magically
turn your breakdance install into an oxygen install or vice versa
*/
if (!defined('BREAKDANCE_MODE')) {
die('For development, please define BREAKDANCE_MODE in wp-config.php, i.e. define("BREAKDANCE_MODE", "oxygen") or define("BREAKDANCE_MODE", "breakdance")');
}
if (
function_exists('\Breakdance\MigrationMode\isBreakdanceEnabledForRequest')
&&
!\Breakdance\MigrationMode\isBreakdanceEnabledForRequest()
) {
return;
}
const __BREAKDANCE_PLUGIN_FILE__ = __FILE__;
const __BREAKDANCE_DIR__ = __DIR__;
const __BREAKDANCE_MIN_PHP_VERSION__ = '7.4';
const __BREAKDANCE_VERSION = '6.0.0';
// const __BREAKDANCE_BETA_EXPIRATION = 'September 20 2022'; // comment this out for no expiration
const __BREAKDANCE_CLEAR_CSS_CACHE_FLAG__ = 16;
const __BREAKDANCE_AI_SUPPORTED__ = true;
if (!version_compare(PHP_VERSION, __BREAKDANCE_MIN_PHP_VERSION__, '>=')) {
add_action('admin_notices', 'breakdance_add_unsupported_php_version_admin_notice');
require_once(ABSPATH . 'wp-admin/includes/plugin.php');
deactivate_plugins(__BREAKDANCE_PLUGIN_FILE__);
// TODO: Add WP version check
} else if (defined('__BREAKDANCE_BETA_EXPIRATION') && time() > strtotime(__BREAKDANCE_BETA_EXPIRATION)) {
add_action('admin_notices', 'breakdance_add_beta_expiration_admin_notice');
} else {
require_once __DIR__ . '/subplugins/breakdance-elements/plugin.php'; // This line was added programmatically by build tool
require_once __DIR__ . '/subplugins/breakdance-woocommerce/plugin.php'; // This line was added programmatically by build tool
require_once __DIR__ . '/subplugins/oxygen-elements/plugin.php'; // This line was added programmatically by build tool
require_once __DIR__ . '/plugin/base.php';
add_action('plugins_loaded', function () {
do_action('before_breakdance_loaded');
bdox_run_action('breakdance_loaded');
});
}
function breakdance_add_unsupported_php_version_admin_notice()
{
$message_text = sprintf(
/* translators: %1$s: plugin name, %2$s: minimum required PHP version, %3$s: current PHP version */
__('%1$s requires PHP of version >= %2$s and is unable to run with the version installed on this server (%3$s). Please switch to a modern web host.', 'breakdance'),
\Breakdance\BreakdanceOxygen\Strings\__bdox('plugin_name'),
__BREAKDANCE_MIN_PHP_VERSION__,
PHP_VERSION
);
echo sprintf('<div class="error"><p>%s</p></div>', $message_text);
}
function breakdance_add_beta_expiration_admin_notice()
{
$domain = BREAKDANCE_MODE === 'oxygen' ? 'oxygenbuilder.com' : 'breakdance.com';
$message = sprintf(
/* translators: %1$s: plugin name, %2$s: domain URL, %3$s: domain name */
__('This %1$s pre-release version is expired. Please get the latest version at <a href="https://%2$s/">%3$s</a>.', 'breakdance'),
\Breakdance\BreakdanceOxygen\Strings\__bdox('plugin_name'),
$domain,
$domain
);
echo '<div class="error"><p>' . $message . '</p></div>';
}