Automattic\WooCommerce\Admin\Notes

Notes::get_action_by_id()public staticWC 1.0

Get action by id.

Method of the class: Notes{}

No Hooks.

Return

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() code WC 8.6.1

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;
}