![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/plugins/wp-rocket/inc/Engine/Optimization/Minify/ |
<?php declare(strict_types=1); namespace WP_Rocket\Engine\Optimization\Minify; use WP_Rocket\Admin\Options_Data; use WP_Rocket\Event_Management\Subscriber_Interface; class AdminSubscriber implements Subscriber_Interface { /** * WP Rocket Options * * @var Options_Data */ private $options; /** * Instantiate the class * * @param Options_Data $options WP Rocket Options Instance. */ public function __construct( Options_Data $options ) { $this->options = $options; } /** * Return an array of events that this subscriber wants to listen to. * * @return array */ public static function get_subscribed_events() { return [ 'switch_theme' => 'clean_minify_all', 'rocket_meta_boxes_fields' => [ 'add_meta_box', 4 ], ]; } /** * Delete all minified cache files * * @return void */ public function clean_minify_all() { // Bail out if minify_js or minify_css is not enabled. if ( ! (bool) $this->options->get( 'minify_js', 0 ) && ! (bool) $this->options->get( 'minify_css', 0 ) ) { return; } // Delete all minify cache files. rocket_clean_minify(); } /** * Add the field to the WP Rocket metabox on the post edit page. * * @param string[] $fields Metaboxes fields. * * @return string[] */ public function add_meta_box( array $fields ) { $fields['minify_js'] = __( 'Minify/combine JavaScript', 'rocket' ); return $fields; } }