WC_Abstract_Legacy_Product::get_files │ public │ WC 1.0

Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Same as get_downloads in CRUD.

Method of the class: WC_Abstract_Legacy_Product{}

No Hooks.

Returns

array.

Usage

$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product();
$WC_Abstract_Legacy_Product->get_files();

Changelog

Deprecated since 3.0.0

WC_Abstract_Legacy_Product::get_files() code WC 11.1.2

public function get_files() {
	wc_deprecated_function( 'WC_Product::get_files', '3.0', 'WC_Product::get_downloads' );
	return $this->get_downloads();
}