WC_Tax_Rate_Importer::import_end()publicWC 1.0

Performs post-import cleanup of files and the cache.

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

Хуки из метода

Возвращает

null. Ничего (null).

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

$WC_Tax_Rate_Importer = new WC_Tax_Rate_Importer();
$WC_Tax_Rate_Importer->import_end();

Код WC_Tax_Rate_Importer::import_end() WC 8.7.0

public function import_end() {
	echo '<p>' . esc_html__( 'All done!', 'woocommerce' ) . ' <a href="' . esc_url( admin_url( 'admin.php?page=wc-settings&tab=tax' ) ) . '">' . esc_html__( 'View tax rates', 'woocommerce' ) . '</a></p>';

	do_action( 'import_end' );
}