File manager - Edit - /home/vblioqus/unfreezetiktok.com/wp-content/plugins/hummingbird-performance/core/api/service/class-minify.php
Back
<?php /** * Minify service. * * @package Hummingbird\Core\Api\Service */ namespace Hummingbird\Core\Api\Service; use Hummingbird\Core\Api\Exception; use WP_Error; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class Minify */ class Minify extends Service { /** * Service name. * * @var string $name */ public $name = 'minify'; /** * Minify constructor. * * @throws Exception Exception. */ public function __construct() { $this->request = new \Hummingbird\Core\Api\Request\Minify( $this ); } /** * Get request object. * * Only used to get the API key via the global minify API object. * * @since 3.0.1 * * @return \Hummingbird\Core\Api\Request\Minify */ public function get_request() { return $this->request; } /** * Check if performance test has finished on server * * @param array $files List of files. * * @return array|mixed|object|WP_Error */ public function process_files( $files = array() ) { $args = array( 'domain' => $this->request->get_this_site(), ); $timeout = apply_filters( 'wphb_api_request_timeout', false ); if ( ! empty( $timeout ) ) { $this->request->set_timeout( $timeout ); } $args['path'] = ''; if ( is_multisite() && ! is_subdomain_install() ) { $blog_details = get_blog_details( get_current_blog_id() ); $args['path'] = $blog_details->path; } elseif ( is_multisite() && is_subdomain_install() ) { global $current_site; $pattern = '/(https?\:\/\/)?(.*)\.' . $current_site->domain . '(.*)/'; if ( preg_match_all( $pattern, home_url(), $matches ) ) { $args['path'] = $matches[2][0]; } } $args['files'] = $files; $args = wp_json_encode( $args ); $this->request->add_header_argument( 'content-type', 'application/json' ); $result = $this->request->post( 'minify', $args ); if ( is_wp_error( $result ) ) { return $result; } return json_decode( wp_remote_retrieve_body( $result ) ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings