Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
www
/
wp-content
/
plugins
/
bluehost-wordpress-plugin
/
inc
/
Editing: Filters.php
<?php /** * Handles global filters for the plugin. * * @package WPPluginBluehost */ namespace Bluehost; use function NewfoldLabs\WP\ModuleLoader\container; /** * Class Filters * * Registers global WordPress filters for the plugin. */ final class Filters { /** * Register all filters. */ public static function init() { \add_filter( 'http_request_args', array( __CLASS__, 'add_hiive_headers' ), 99, 2 ); } /** * Add locale headers to Hiive API requests. * * @param array $args - HTTP request arguments. * @param string $url - URL of the request. * * @return array */ public static function add_hiive_headers( $args, $url ) { $container = container(); if ( defined( 'NFD_HIIVE_URL' ) && strpos( $url, NFD_HIIVE_URL ) !== false ) { if ( ! isset( $args['headers'] ) || ! is_array( $args['headers'] ) ) { $args['headers'] = array(); } $args['headers']['X-WP-LOCALE'] = get_locale(); $args['headers']['X-HOST-PLUGIN-ID'] = $container->plugin()->id; } return $args; } }
Save
Cancel