Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStore::get_all_table_names()publicWC 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.

Return

String[].

Usage

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

OrdersTableDataStore::get_all_table_names() code WC 8.7.0

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(),
	);
}