Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories

Register::get_table()publicWC 1.0

Supplies the name of the database table used to store approved directories.

Method of the class: Register{}

No Hooks.

Return

String.

Usage

$Register = new Register();
$Register->get_table(): string;

Register::get_table() code WC 8.7.0

public function get_table(): string {
	global $wpdb;
	return $wpdb->prefix . 'wc_product_download_directories';
}