Automattic\WooCommerce\Admin\Notes
Note::set_type
Set note type.
Method of the class: Note{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Note = new Note(); $Note->set_type( $type );
- $type(string) (required)
- Note type.
Note::set_type() Note::set type code WC 10.8.1
public function set_type( $type ) {
if ( empty( $type ) ) {
$this->error( 'admin_note_invalid_data', __( 'The admin note type prop cannot be empty.', 'woocommerce' ) );
}
if ( in_array( $type, self::get_deprecated_types(), true ) ) {
$this->error(
'admin_note_invalid_data',
__( 'The admin note type prop is deprecated.', 'woocommerce' )
);
}
if ( ! in_array( $type, self::get_allowed_types(), true ) ) {
$this->error(
'admin_note_invalid_data',
sprintf(
/* translators: %s: admin note type. */
__( 'The admin note type prop (%s) is not one of the supported types.', 'woocommerce' ),
$type
)
);
}
$this->set_prop( 'type', $type );
}