芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/google-listings-and-ads/src/Settings/SyncerHooks.php
job_repository = $job_repository; $this->notifications_service = $notifications_service; } /** * Register the service. */ public function register(): void { if ( ! $this->notifications_service->is_ready( NotificationsService::DATATYPE_SETTINGS, false ) ) { return; } $update_rest = function ( $option ) { if ( in_array( $option, self::ALLOWED_SETTINGS, true ) ) { $this->job_repository->get( SettingsNotificationJob::class )->schedule(); } }; add_action( 'update_option', $update_rest, 90, 1 ); } }