WC_Admin_Exporters::export_allowed()

Return true if WooCommerce export is allowed for current user, false otherwise.


Description Description


Return Return

(bool) Whether current user can perform export.


Top ↑

Source Source

File: includes/admin/class-wc-admin-exporters.php

	protected function export_allowed() {
		return current_user_can( 'edit_products' ) && current_user_can( 'export' );
	}


Top ↑

User Contributed Notes User Contributed Notes

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