Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

Table::get_base_url()publicWC 1.0

Supplies the 'base' admin URL for this admin table.

Метод класса: Table{}

Хуков нет.

Возвращает

Строку.

Использование

$Table = new Table();
$Table->get_base_url(): string;

Код Table::get_base_url() WC 8.7.0

public function get_base_url(): string {
	return add_query_arg(
		array(
			'page'    => 'wc-settings',
			'tab'     => 'products',
			'section' => 'download_urls',
		),
		admin_url( 'admin.php' )
	);
}