WP_Upgrader::download_package( string $package )

Download a package.


Parameters

$package

(string) (Required) The URI of the package. If this is the full path to an existing local file, it will be returned untouched.


Return

(string|WP_Error) The full path to the downloaded package file, or a WP_Error object.


Source

File: wp-admin/includes/class-wp-upgrader.php

	public function download_package( $package ) {

		/**
		 * Filters whether to return the package.
		 *
		 * @since WP-3.7.0
		 *
		 * @param bool        $reply   Whether to bail without returning the package.
		 *                             Default false.
		 * @param string      $package The package file name.
		 * @param WP_Upgrader $this    The WP_Upgrader instance.
		 */
		$reply = apply_filters( 'upgrader_pre_download', false, $package, $this );
		if ( false !== $reply )
			return $reply;

		if ( ! preg_match('!^(http|https|ftp)://!i', $package) && file_exists($package) ) //Local file or remote?
			return $package; //must be a local file..

		if ( empty($package) )
			return new WP_Error('no_package', $this->strings['no_package']);

		$this->skin->feedback('downloading_package', $package);

		$download_file = download_url($package);

		if ( is_wp_error($download_file) )
			return new WP_Error('download_failed', $this->strings['download_failed'], $download_file->get_error_message());

		return $download_file;
	}


Changelog

Changelog
Version Description
WP-2.8.0 Introduced.