You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Description: Provides compatibility between the Imagify and the WP-Stateless plugins.
* Author: UDX
* Version: 0.0.1
* Text Domain: wpsimagify
* Author URI: https://udx.io
* License: MIT
*
* Copyright 2023 UDX (email: info@udx.io)
*/
namespace WPSL\Imagify;
add_action('plugins_loaded', function () {
if (class_exists('wpCloud\StatelessMedia\Compatibility')) {
require_once 'vendor/autoload.php';
// Load
return new Imagify();
}
add_filter('plugin_row_meta', function ($plugin_meta, $plugin_file, $_, $__) {
if ($plugin_file !== join(DIRECTORY_SEPARATOR, [basename(__DIR__), basename(__FILE__)])) return $plugin_meta;
$plugin_meta[] = sprintf('<span style="color:red;">%s</span>', __('This plugin requires WP-Stateless plugin version 4.0.0 or greater to be installed and active.'));