WC_Customer_Download_Data_Store::get_download()privateWC 1.0

Get a download object.

Метод класса: WC_Customer_Download_Data_Store{}

Хуков нет.

Возвращает

WC_Customer_Download.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->get_download( $data );
$data(массив) (обязательный)
From the DB.

Код WC_Customer_Download_Data_Store::get_download() WC 8.7.0

private function get_download( $data ) {
	return new WC_Customer_Download( $data );
}