pageRenderer = $pageRenderer; $this->wooCommerceHelper = $wooCommerceHelper; $this->wp = $wp; } public function render() { if ((bool)(defined('DOING_AJAX') && DOING_AJAX)) return; $data = [ 'finish_wizard_url' => $this->wp->adminUrl('admin.php?page=' . Menu::MAIN_PAGE_SLUG), 'show_customers_import' => $this->wooCommerceHelper->getCustomersCount() > 0, ]; $this->pageRenderer->displayPage('woocommerce_setup.html', $data); } }