🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 16:35:12 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
image-optimization
/
modules
/
core
/
components
📍 /home/eliteewa/public_html/wp-content/plugins/image-optimization/modules/core/components
🔄 Refresh
✏️
Editing: notificator.php
Writable
<?php namespace ImageOptimization\Modules\Core\Components; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } use Elementor\WPNotificationsPackage\V120\Notifications as Notifications_SDK; class Notificator { private ?Notifications_SDK $notificator = null; public function get_notifications_by_conditions( bool $force_request = false ): array { return $this->notificator->get_notifications_by_conditions( $force_request ); } public function __construct() { require_once IMAGE_OPTIMIZATION_PATH . '/vendor/autoload.php'; $this->notificator = new Notifications_SDK( [ 'app_name' => 'image-optimizer', 'app_version' => IMAGE_OPTIMIZATION_VERSION, 'short_app_name' => 'eio', 'app_data' => [ 'plugin_basename' => IMAGE_OPTIMIZATION_PLUGIN_FILE, ], ] ); } }
💾 Save Changes
❌ Cancel