WC_Admin_List_Table_Orders::get_row_actions()protectedWC 1.0

Get row actions to show in the list table.

Method of the class: WC_Admin_List_Table_Orders{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_row_actions( $actions, $post );
$actions(array) (required)
Array of actions.
$post(WP_Post) (required)
Current post object.

WC_Admin_List_Table_Orders::get_row_actions() code WC 8.7.0

protected function get_row_actions( $actions, $post ) {
	return array();
}