Automattic\WooCommerce\Internal\Admin
Install::get_tables()
Return a list of tables. Used to make sure all WC Admin tables are dropped when uninstalling the plugin in a single site or multi site environment.
{} Это метод класса: Install{}
Хуков нет.
Возвращает
Массив
. WC tables.
Использование
$result = Install::get_tables();
Код Install::get_tables() Install::get tables WC 6.4.1
public static function get_tables() { global $wpdb; return array( "{$wpdb->prefix}wc_order_stats", "{$wpdb->prefix}wc_order_product_lookup", "{$wpdb->prefix}wc_order_tax_lookup", "{$wpdb->prefix}wc_order_coupon_lookup", "{$wpdb->prefix}wc_admin_notes", "{$wpdb->prefix}wc_admin_note_actions", "{$wpdb->prefix}wc_customer_lookup", "{$wpdb->prefix}wc_category_lookup", ); }