Automattic\WooCommerce\Internal\DataStores\StockNotifications
StockNotificationsMetaDataStore::get_table_name
Returns the name of the table used for storage.
Method of the class: StockNotificationsMetaDataStore{}
No Hooks.
Returns
String.
Usage
$StockNotificationsMetaDataStore = new StockNotificationsMetaDataStore(); $StockNotificationsMetaDataStore->get_table_name();
StockNotificationsMetaDataStore::get_table_name() StockNotificationsMetaDataStore::get table name code WC 10.3.6
public function get_table_name() {
global $wpdb;
return $wpdb->prefix . 'wc_stock_notificationmeta';
}