WC_WCCOM_Site_Installation_State::set_installed_path()publicWC 1.0

Set the path to the installed file.

Method of the class: WC_WCCOM_Site_Installation_State{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_WCCOM_Site_Installation_State = new WC_WCCOM_Site_Installation_State();
$WC_WCCOM_Site_Installation_State->set_installed_path( $installed_path );
$installed_path(string) (required)
The path to the installed file.

WC_WCCOM_Site_Installation_State::set_installed_path() code WC 8.7.0

public function set_installed_path( $installed_path ) {
	$this->installed_path = $installed_path;
}