WC_Customer_Download_Log_Data_Store::get_download_log()privateWC 1.0

Get a download log object.

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

Хуков нет.

Возвращает

WC_Customer_Download_Log.

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

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

Код WC_Customer_Download_Log_Data_Store::get_download_log() WC 8.7.0

private function get_download_log( $data ) {
	return new WC_Customer_Download_Log( $data );
}