Automattic\WooCommerce\EmailEditor\Engine

Assets_Manager::set_assets_pathpublicWC 1.0

Sets the path for the email editor assets.

Method of the class: Assets_Manager{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Assets_Manager = new Assets_Manager();
$Assets_Manager->set_assets_path( $assets_path ): void;
$assets_path(string) (required)
The path to the email editor assets directory.

Assets_Manager::set_assets_path() code WC 10.4.3

public function set_assets_path( string $assets_path ): void {
	$this->assets_path = $assets_path;
}