WC_Admin_API_Keys_Table_List::get_bulk_actions()

Get bulk actions.


Description Description


Return Return

(array)


Top ↑

Source Source

File: includes/admin/class-wc-admin-api-keys-table-list.php

	protected function get_bulk_actions() {
		if ( ! current_user_can( 'remove_users' ) ) {
			return array();
		}

		return array(
			'revoke' => __( 'Revoke', 'woocommerce' ),
		);
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.