Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin
Table::get_base_url()
Supplies the 'base' admin URL for this admin table.
Method of the class: Table{}
No Hooks.
Return
String
.
Usage
$Table = new Table(); $Table->get_base_url(): string;
Table::get_base_url() Table::get base url code WC 9.5.1
public function get_base_url(): string { return add_query_arg( array( 'page' => 'wc-settings', 'tab' => 'products', 'section' => 'download_urls', ), admin_url( 'admin.php' ) ); }