WC_Customer_Download::get_downloads_remaining()publicWC 1.0

Get downloads_remaining.

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

Хуков нет.

Возвращает

Int|Строку.

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

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->get_downloads_remaining( $context );
$context(строка)
What the value is for. Valid values are 'view' and 'edit'.
По умолчанию: 'view'

Код WC_Customer_Download::get_downloads_remaining() WC 8.7.0

public function get_downloads_remaining( $context = 'view' ) {
	return $this->get_prop( 'downloads_remaining', $context );
}