| Server IP : 185.21.40.28 / Your IP : 216.73.217.109 Web Server : LiteSpeed System : Linux vm1413.enterprisecloud.nu 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : nordisk-netvaerk-neuro_s2rzzojuo ( 10433) PHP Version : 8.3.32 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nordisk-netvaerk-neurorehab.com/httpdocs/wp-content/plugins/imagify/inc/ |
Upload File : |
<?php
use Imagify\Dependencies\League\Container\Container;
use Imagify\Plugin;
defined( 'ABSPATH' ) || exit;
if ( file_exists( IMAGIFY_PATH . 'vendor/autoload.php' ) ) {
require_once IMAGIFY_PATH . 'vendor/autoload.php';
}
require_once IMAGIFY_PATH . 'inc/Dependencies/ActionScheduler/action-scheduler.php';
/**
* Plugin init.
*
* @since 1.0
*/
function imagify_init() {
// Nothing to do during autosave.
if ( defined( 'DOING_AUTOSAVE' ) ) {
return;
}
$providers = require_once IMAGIFY_PATH . 'config/providers.php';
$plugin = new Plugin(
new Container(),
[
'plugin_path' => IMAGIFY_PATH,
]
);
$plugin->init( $providers );
// Boot the MCP adapter after providers/subscribers are wired so that
// ConfigSubscriber and AbilitiesSubscriber are already listening before
// the adapter fires `mcp_adapter_init` / `wp_abilities_api_*` actions
// (those fire from `rest_api_init` priority 15, well after `plugins_loaded`).
$can_boot_mcp_adapter =
class_exists( \WP\MCP\Core\McpAdapter::class )
&& function_exists( 'wp_register_ability' )
&& function_exists( 'wp_get_ability' )
&& function_exists( 'wp_get_abilities' )
&& function_exists( 'wp_register_ability_category' );
if ( $can_boot_mcp_adapter ) {
\WP\MCP\Core\McpAdapter::instance();
}
}
add_action( 'plugins_loaded', 'imagify_init' );