Automattic\WooCommerce\Admin\Notes
Note::get_actions()
Get actions on the note (if any).
Method of the class: Note{}
No Hooks.
Return
Array
.
Usage
$Note = new Note(); $Note->get_actions( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
Note::get_actions() Note::get actions code WC 9.7.1
public function get_actions( $context = 'view' ) { return $this->get_prop( 'actions', $context ); }