Theme_Upgrader::bulk_upgrade()publicWP 3.0.0

Upgrades several themes at once.

Метод класса: Theme_Upgrader{}

Хуки из метода

Возвращает

Массив[]|false. An array of results, or false if unable to connect to the filesystem.

Использование

$Theme_Upgrader = new Theme_Upgrader();
$Theme_Upgrader->bulk_upgrade( $themes, $args );
$themes(string[]) (обязательный)
Array of the theme slugs.
$args(массив)

Other arguments for upgrading several themes at once.

По умолчанию: empty array

  • clear_update_cache(true|false)
    Whether to clear the update cache if successful.
    По умолчанию: true

Заметки

  • Global. Строка. $wp_version The WordPress version string.

Список изменений

С версии 3.0.0 Введена.
С версии 3.7.0 The $args parameter was added, making clearing the update cache optional.

Код Theme_Upgrader::bulk_upgrade() WP 6.5.2

public function bulk_upgrade( $themes, $args = array() ) {
	global $wp_version;

	$defaults    = array(
		'clear_update_cache' => true,
	);
	$parsed_args = wp_parse_args( $args, $defaults );

	$this->init();
	$this->bulk = true;
	$this->upgrade_strings();

	$current = get_site_transient( 'update_themes' );

	add_filter( 'upgrader_pre_install', array( $this, 'current_before' ), 10, 2 );
	add_filter( 'upgrader_post_install', array( $this, 'current_after' ), 10, 2 );
	add_filter( 'upgrader_clear_destination', array( $this, 'delete_old_theme' ), 10, 4 );

	$this->skin->header();

	// Connect to the filesystem first.
	$res = $this->fs_connect( array( WP_CONTENT_DIR ) );
	if ( ! $res ) {
		$this->skin->footer();
		return false;
	}

	$this->skin->bulk_header();

	/*
	 * Only start maintenance mode if:
	 * - running Multisite and there are one or more themes specified, OR
	 * - a theme with an update available is currently in use.
	 * @todo For multisite, maintenance mode should only kick in for individual sites if at all possible.
	 */
	$maintenance = ( is_multisite() && ! empty( $themes ) );
	foreach ( $themes as $theme ) {
		$maintenance = $maintenance || get_stylesheet() === $theme || get_template() === $theme;
	}
	if ( $maintenance ) {
		$this->maintenance_mode( true );
	}

	$results = array();

	$this->update_count   = count( $themes );
	$this->update_current = 0;
	foreach ( $themes as $theme ) {
		++$this->update_current;

		$this->skin->theme_info = $this->theme_info( $theme );

		if ( ! isset( $current->response[ $theme ] ) ) {
			$this->skin->set_result( true );
			$this->skin->before();
			$this->skin->feedback( 'up_to_date' );
			$this->skin->after();
			$results[ $theme ] = true;
			continue;
		}

		// Get the URL to the zip file.
		$r = $current->response[ $theme ];

		if ( isset( $r['requires'] ) && ! is_wp_version_compatible( $r['requires'] ) ) {
			$result = new WP_Error(
				'incompatible_wp_required_version',
				sprintf(
					/* translators: 1: Current WordPress version, 2: WordPress version required by the new theme version. */
					__( 'Your WordPress version is %1$s, however the new theme version requires %2$s.' ),
					$wp_version,
					$r['requires']
				)
			);

			$this->skin->before( $result );
			$this->skin->error( $result );
			$this->skin->after();
		} elseif ( isset( $r['requires_php'] ) && ! is_php_version_compatible( $r['requires_php'] ) ) {
			$result = new WP_Error(
				'incompatible_php_required_version',
				sprintf(
					/* translators: 1: Current PHP version, 2: PHP version required by the new theme version. */
					__( 'The PHP version on your server is %1$s, however the new theme version requires %2$s.' ),
					PHP_VERSION,
					$r['requires_php']
				)
			);

			$this->skin->before( $result );
			$this->skin->error( $result );
			$this->skin->after();
		} else {
			add_filter( 'upgrader_source_selection', array( $this, 'check_package' ) );
			$result = $this->run(
				array(
					'package'           => $r['package'],
					'destination'       => get_theme_root( $theme ),
					'clear_destination' => true,
					'clear_working'     => true,
					'is_multi'          => true,
					'hook_extra'        => array(
						'theme'       => $theme,
						'temp_backup' => array(
							'slug' => $theme,
							'src'  => get_theme_root( $theme ),
							'dir'  => 'themes',
						),
					),
				)
			);
			remove_filter( 'upgrader_source_selection', array( $this, 'check_package' ) );
		}

		$results[ $theme ] = $result;

		// Prevent credentials auth screen from displaying multiple times.
		if ( false === $result ) {
			break;
		}
	} // End foreach $themes.

	$this->maintenance_mode( false );

	// Refresh the Theme Update information.
	wp_clean_themes_cache( $parsed_args['clear_update_cache'] );

	/** This action is documented in wp-admin/includes/class-wp-upgrader.php */
	do_action(
		'upgrader_process_complete',
		$this,
		array(
			'action' => 'update',
			'type'   => 'theme',
			'bulk'   => true,
			'themes' => $themes,
		)
	);

	$this->skin->bulk_footer();

	$this->skin->footer();

	// Cleanup our hooks, in case something else does an upgrade on this connection.
	remove_filter( 'upgrader_pre_install', array( $this, 'current_before' ) );
	remove_filter( 'upgrader_post_install', array( $this, 'current_after' ) );
	remove_filter( 'upgrader_clear_destination', array( $this, 'delete_old_theme' ) );

	/*
	 * Ensure any future auto-update failures trigger a failure email by removing
	 * the last failure notification from the list when themes update successfully.
	 */
	$past_failure_emails = get_option( 'auto_plugin_theme_update_emails', array() );

	foreach ( $results as $theme => $result ) {
		// Maintain last failure notification when themes failed to update manually.
		if ( ! $result || is_wp_error( $result ) || ! isset( $past_failure_emails[ $theme ] ) ) {
			continue;
		}

		unset( $past_failure_emails[ $theme ] );
	}

	update_option( 'auto_plugin_theme_update_emails', $past_failure_emails );

	return $results;
}