$93 GRAYBYTE WORDPRESS FILE MANAGER $29

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.162.162 | ADMIN IP 216.73.217.88
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bravetechrwanda/itiministry.org/wp-includes/css/

HOME
Current File : /home/bravetechrwanda/itiministry.org/wp-includes/css//class-wp-simplepie-file.php
<?php
/**
 * Feed API: WP_SimplePie_File class
 *
 * @package WordPress
 * @subpackage Feed
 * @since 4.7.0
 */

/**
 * Core class for fetching remote files and reading local files with SimplePie.
 *
 * This uses Core's HTTP API to make requests, which gives plugins the ability
 * to hook into the process.
 *
 * @since 2.8.0
 */
#[AllowDynamicProperties]
class WP_SimplePie_File extends SimplePie\File {

	/**
	 * Timeout.
	 *
	 * @var int How long the connection should stay open in seconds.
	 */
	public $timeout = 10;

	/**
	 * Constructor.
	 *
	 * @since 2.8.0
	 * @since 3.2.0 Updated to use a PHP5 constructor.
	 * @since 5.6.1 Multiple headers are concatenated into a comma-separated string,
	 *              rather than remaining an array.
	 *
	 * @param string       $url             Remote file URL.
	 * @param int          $timeout         Optional. How long the connection should stay open in seconds.
	 *                                      Default 10.
	 * @param int          $redirects       Optional. The number of allowed redirects. Default 5.
	 * @param string|array $headers         Optional. Array or string of headers to send with the request.
	 *                                      Default null.
	 * @param string       $useragent       Optional. User-agent value sent. Default null.
	 * @param bool         $force_fsockopen Optional. Whether to force opening internet or unix domain socket
	 *                                      connection or not. Default false.
	 */
	public function __construct( $url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false ) {
		$this->url       = $url;
		$this->timeout   = $timeout;
		$this->redirects = $redirects;
		$this->headers   = $headers;
		$this->useragent = $useragent;

		$this->method = SimplePie\SimplePie::FILE_SOURCE_REMOTE;

		if ( preg_match( '/^http(s)?:\/\//i', $url ) ) {
			$args = array(
				'timeout'     => $this->timeout,
				'redirection' => $this->redirects,
			);

			if ( ! empty( $this->headers ) ) {
				$args['headers'] = $this->headers;
			}

			if ( SimplePie\Misc::get_default_useragent() !== $this->useragent ) { // Use default WP user agent unless custom has been specified.
				$args['user-agent'] = $this->useragent;
			}

			$res = wp_safe_remote_request( $url, $args );

			if ( is_wp_error( $res ) ) {
				$this->error   = 'WP HTTP Error: ' . $res->get_error_message();
				$this->success = false;

			} else {
				$this->headers = wp_remote_retrieve_headers( $res );

				if ( $this->headers instanceof \WpOrg\Requests\Utility\CaseInsensitiveDictionary ) {
					$this->headers = $this->headers->getAll();
				}

				/*
				 * SimplePie expects multiple headers to be stored as a comma-separated string,
				 * but `wp_remote_retrieve_headers()` returns them as an array, so they need
				 * to be converted.
				 *
				 * The only exception to that is the `content-type` header, which should ignore
				 * any previous values and only use the last one.
				 *
				 * @see SimplePie\HTTP\Parser::new_line().
				 */
				foreach ( $this->headers as $name => $value ) {
					if ( ! is_array( $value ) ) {
						continue;
					}

					if ( 'content-type' === $name ) {
						$this->headers[ $name ] = array_pop( $value );
					} else {
						$this->headers[ $name ] = implode( ', ', $value );
					}
				}

				$this->body        = wp_remote_retrieve_body( $res );
				$this->status_code = wp_remote_retrieve_response_code( $res );
			}
		} else {
			$this->error   = '';
			$this->success = false;
		}
	}
}

Current_dir [ WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
19 May 2026 3.23 AM
bravetechrwanda / bravetechrwanda
0755
dist
--
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0755
wk
--
8 Feb 2026 11.06 PM
bravetechrwanda / bravetechrwanda
0755
wp-site
--
9 May 2026 1.38 PM
bravetechrwanda / bravetechrwanda
0755
admin-bar-rtl.css
24.324 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
admin-bar-rtl.min.css
19.889 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
admin-bar.css
24.289 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
admin-bar.min.css
19.888 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
buttons-rtl.css
9.636 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
buttons-rtl.min.css
5.921 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
buttons.css
9.6 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
buttons.min.css
5.919 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
class-IXR.php
2.555 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
class-wp-block.php
24.23 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
class-wp-customize-setting.php
29.26 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
class-wp-simplepie-file.php
3.469 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
class-wp-theme-json-schema.php
7.194 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
classic-themes.css
0.712 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
classic-themes.min.css
0.284 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
customize-preview-rtl.css
3.583 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
customize-preview-rtl.min.css
2.808 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
customize-preview.css
3.544 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
customize-preview.min.css
2.803 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
dashicons.css
60.885 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
dashicons.min.css
57.621 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
editor-20260505120259.css
32.835 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
editor-rtl.css
32.872 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
editor-rtl.min.css
26.846 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
editor.css
32.835 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
editor.min.css
26.843 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
error_log
0.605 KB
11 May 2026 6.52 AM
bravetechrwanda / bravetechrwanda
0644
jquery-ui-dialog-20260505214424.css
5.758 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
jquery-ui-dialog-rtl.css
5.796 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
jquery-ui-dialog-rtl.min-20260506011726.css
4.421 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
jquery-ui-dialog-rtl.min.css
4.421 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
jquery-ui-dialog.css
5.758 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
jquery-ui-dialog.min.css
4.417 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
media-list.css
5.19 MB
11 Dec 2024 8.52 AM
bravetechrwanda / bravetechrwanda
0644
media-views-rtl.css
56.251 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
media-views-rtl.min.css
45.617 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
media-views.css
56.211 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
media-views.min.css
45.611 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
rss-functions.php
0.249 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
wp-auth-check-rtl.min.css
1.843 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-auth-check.css
2.417 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-auth-check.min.css
1.841 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-embed-template-ie.css
0.032 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
wp-embed-template-ie.min.css
0.034 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
wp-embed-template.css
7.721 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
wp-embed-template.min.css
6.771 KB
2 Dec 2025 11.05 PM
bravetechrwanda / bravetechrwanda
0644
wp-empty-template-alert.css
0.454 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
wp-empty-template-alert.min.css
0.399 KB
17 Oct 2025 11.09 AM
bravetechrwanda / bravetechrwanda
0644
wp-pointer-rtl.css
3.988 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-pointer-rtl.min.css
3.181 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-pointer.css
3.949 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-pointer.min.css
3.176 KB
3 Feb 2026 8.22 PM
bravetechrwanda / bravetechrwanda
0644
wp-timer.css
5.19 MB
11 Dec 2024 8.52 AM
bravetechrwanda / bravetechrwanda
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF