Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_all_table_names
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() OrdersTableDataStore::get all table names code WC 10.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(),
);
}