Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin
Table::get_base_url()
Supplies the 'base' admin URL for this admin table.
Метод класса: Table{}
Хуков нет.
Возвращает
Строку
.
Использование
$Table = new Table(); $Table->get_base_url(): string;
Код Table::get_base_url() Table::get base url WC 9.3.3
public function get_base_url(): string { return add_query_arg( array( 'page' => 'wc-settings', 'tab' => 'products', 'section' => 'download_urls', ), admin_url( 'admin.php' ) ); }