Automattic\WooCommerce\Admin\Notes
Notes::get_action_by_id
Get action by id.
Method of the class: Notes{}
No Hooks.
Returns
Object|true|false. The found action.
Usage
$result = Notes::get_action_by_id( $note, $action_id );
- $note(Note) (required)
- The note that has of the action.
- $action_id(int) (required)
- Action ID.
Notes::get_action_by_id() Notes::get action by id code WC 10.5.0
public static function get_action_by_id( $note, $action_id ) {
$actions = $note->get_actions( 'edit' );
$found_action = false;
foreach ( $actions as $action ) {
if ( $action->id === $action_id ) {
$found_action = $action;
}
}
return $found_action;
}