Automattic\WooCommerce\Admin\Notes
Note::get_actions() public WC 1.0
Get actions on the note (if any).
{} Это метод класса: Note{}
Хуков нет.
Возвращает
Массив.
Использование
$Note = new Note(); $Note->get_actions( $context );
- $context(строка)
- What the value is for. Valid values are 'view' and 'edit'.
Код Note::get_actions() Note::get actions WC 5.0.0
public function get_actions( $context = 'view' ) {
return $this->get_prop( 'actions', $context );
}