WP_Upgrader::init

Advertisement

Summery Summery

Initialize the upgrader.

Syntax Syntax

WP_Upgrader::init()

Description Description

This will set the relationship between the skin being used and this upgrader, and also add the generic strings to WP_Upgrader::$strings.

Source Source

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

	public function init() {
		$this->skin->set_upgrader( $this );
		$this->generic_strings();
	}

Advertisement

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.

Advertisement

Leave a Reply