Automattic\WooCommerce\Admin\Notes
Note::get_is_snoozable
Get note snoozability.
Метод класса: Note{}
Хуков нет.
Возвращает
true|false. Whether or not the note can be snoozed.
Использование
$Note = new Note(); $Note->get_is_snoozable( $context );
- $context(строка)
- What the value is for. Valid values are
'view'and'edit'.
По умолчанию:'view'
Код Note::get_is_snoozable() Note::get is snoozable WC 10.4.3
public function get_is_snoozable( $context = 'view' ) {
return $this->get_prop( 'is_snoozable', $context );
}