Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::get_all_table_namespublicWC 1.0

Get the names of all the tables involved in the custom orders table feature.

See also : get_all_table_names_with_id.

Method of the class: OrdersTableDataStore{}

No Hooks.

Returns

String[].

Usage

$OrdersTableDataStore = new OrdersTableDataStore();
$OrdersTableDataStore->get_all_table_names();

OrdersTableDataStore::get_all_table_names() code WC 9.9.4

public function get_all_table_names() {
	return array(
		$this->get_orders_table_name(),
		$this->get_addresses_table_name(),
		$this->get_operational_data_table_name(),
		$this->get_meta_table_name(),
	);
}