Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_all_table_names()
Get the names of all the tables involved in the custom orders table feature.
{} It's a method of the class: OrdersTableDataStore{}
No Hooks.
Return
String[]
.
Usage
$OrdersTableDataStore = new OrdersTableDataStore(); $OrdersTableDataStore->get_all_table_names();
Code of OrdersTableDataStore::get_all_table_names() OrdersTableDataStore::get all table names WC 6.6.1
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(), ); }