Automattic\WooCommerce\Admin\Notes
Note::set_is_snoozable
Set note snoozability.
Method of the class: Note{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Note = new Note(); $Note->set_is_snoozable( $is_snoozable );
- $is_snoozable(true|false) (required)
- Whether or not the note can be snoozed.
Note::set_is_snoozable() Note::set is snoozable code WC 10.8.1
public function set_is_snoozable( $is_snoozable ) {
return $this->set_prop( 'is_snoozable', $is_snoozable );
}