WC_Customer_Download::get_access_expires()
Get access_expires.
Метод класса: WC_Customer_Download{}
Хуков нет.
Возвращает
WC_DateTime|null
. Object if the date is set or null if there is no date.
Использование
$WC_Customer_Download = new WC_Customer_Download(); $WC_Customer_Download->get_access_expires( $context );
- $context(строка)
- What the value is for. Valid values are 'view' and 'edit'.
По умолчанию: 'view'
Код WC_Customer_Download::get_access_expires() WC Customer Download::get access expires WC 9.8.1
public function get_access_expires( $context = 'view' ) { return $this->get_prop( 'access_expires', $context ); }