at path:
ROOT
/
wp-content
/
plugins
/
elementor
/
core
/
utils
/
http.php
run:
R
W
Run
api
DIR
2026-04-14 05:34:14
R
W
Run
import-export
DIR
2026-04-14 05:34:14
R
W
Run
promotions
DIR
2026-04-14 05:34:14
R
W
Run
svg
DIR
2026-04-14 05:34:14
R
W
Run
ab-test.php
2.45 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-config-provider.php
1.49 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-translation-loader.php
2.51 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
collection.php
10.13 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
exceptions.php
709 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
force-locale.php
3.55 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
hints.php
14.66 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
http.php
981 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
plugins-manager.php
2.84 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
static-collection.php
1.09 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
str.php
1001 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-element-iterator.php
766 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-import-export-utils.php
7.2 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-snapshot-processor.php
6.24 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
version.php
3.78 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
error_log
up
📄
http.php
Save
<?php namespace Elementor\Core\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Http extends \WP_Http { /** * Pass multiple urls to implements a fallback machine when one of the urls * is sending an error or not exists anymore. * * @param array $urls * @param array $args * * @return array|\WP_Error|null */ public function request_with_fallback( array $urls, $args = [] ) { $response = null; foreach ( $urls as $url ) { $response = $this->request( $url, $args ); if ( $this->is_successful_response( $response ) ) { return $response; } } return $response; } /** * @param $response * * @return bool */ private function is_successful_response( $response ) { if ( is_wp_error( $response ) ) { return false; } $response_code = (int) wp_remote_retrieve_response_code( $response ); if ( in_array( $response_code, [ 0, 404, 500 ], true ) ) { return false; } return true; } }