Automattic\WooCommerce\Admin\Notes
Note::get_is_snoozable() public WC 1.0
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'.
Код Note::get_is_snoozable() Note::get is snoozable WC 5.0.0
public function get_is_snoozable( $context = 'view' ) {
return $this->get_prop( 'is_snoozable', $context );
}