📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 07:15:34
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
woocommerce
/
packages
/
email-editor
/
src
/
Engine
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/woocommerce/packages/email-editor/src/Engine
🔄 Refresh
✏️
Editing: class-dependency-check.php
Writable
<?php /** * This file is part of the WooCommerce Email Editor package. * * @package Automattic\WooCommerce\EmailEditor */ declare(strict_types = 1); namespace Automattic\WooCommerce\EmailEditor\Engine; /** * This class is responsible checking the dependencies of the email editor. */ class Dependency_Check { /** * Minimum WordPress version required for the email editor. */ public const MIN_WP_VERSION = '6.7'; /** * Checks if all dependencies are met. */ public function are_dependencies_met(): bool { if ( ! $this->is_wp_version_compatible() ) { return false; } return true; } /** * Checks if the WordPress version is supported. */ private function is_wp_version_compatible(): bool { return version_compare( get_bloginfo( 'version' ), self::MIN_WP_VERSION, '>=' ); } }
💾 Save Changes
❌ Cancel