Automattic\WooCommerce\EmailEditor\Engine

Assets_Manager::set_assets_urlpublicWC 1.0

Sets the URL for the email editor assets.

@param string $assets_url The URL to the email editor assets directory. @return void

Method of the class: Assets_Manager{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Assets_Manager = new Assets_Manager();
$Assets_Manager->set_assets_url( $assets_url ): void;
$assets_url(string) (required)
.

Assets_Manager::set_assets_url() code WC 10.5.0

public function set_assets_url( string $assets_url ): void {
	$this->assets_url = $assets_url;
}