Automattic\WooCommerce\Admin\API\Reports
DataStore::get_db_table_name
Get table name from database class.
Method of the class: DataStore{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = DataStore::get_db_table_name();
DataStore::get_db_table_name() DataStore::get db table name code WC 11.0.0
public static function get_db_table_name() {
global $wpdb;
return isset( $wpdb->{static::$table_name} ) ? $wpdb->{static::$table_name} : $wpdb->prefix . static::$table_name;
}