Automattic\WooCommerce\Internal\Admin\Logging
PageController::get_logs_tab_url
Get the canonical URL for the Logs tab of the Status admin page.
Method of the class: PageController{}
No Hooks.
Returns
String.
Usage
$PageController = new PageController(); $PageController->get_logs_tab_url(): string;
PageController::get_logs_tab_url() PageController::get logs tab url code WC 10.8.1
public function get_logs_tab_url(): string {
return add_query_arg(
array(
'page' => 'wc-status',
'tab' => 'logs',
),
admin_url( 'admin.php' )
);
}