WC_Tax_Rate_Importer::set_import_error_message()protectedWC 1.0

Set the import error message.

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

Хуков нет.

Возвращает

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

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->set_import_error_message( $message );
$message(строка) (обязательный)
Error message.

Код WC_Tax_Rate_Importer::set_import_error_message() WC 8.7.0

protected function set_import_error_message( $message ) {
	$this->import_error_message = $message;
}