Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableDataStoreMeta::get_table_name()protectedWC 1.0

Returns the name of the table used for storage.

Method of the class: OrdersTableDataStoreMeta{}

No Hooks.

Return

String.

Usage

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

OrdersTableDataStoreMeta::get_table_name() code WC 8.7.0

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