Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStoreMeta::get_table_nameprotectedWC 1.0

Returns the name of the table used for storage.

Method of the class: OrdersTableDataStoreMeta{}

No Hooks.

Returns

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_table_name();

OrdersTableDataStoreMeta::get_table_name() code WC 10.3.3

protected function get_table_name() {
	return OrdersTableDataStore::get_meta_table_name();
}