WC_CSV_Exporter::get_column_names()publicWC 3.1.0

Return an array of supported column names and ids.

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

Возвращает

Массив.

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

$WC_CSV_Exporter = new WC_CSV_Exporter();
$WC_CSV_Exporter->get_column_names();

Список изменений

С версии 3.1.0 Введена.

Код WC_CSV_Exporter::get_column_names() WC 8.7.0

public function get_column_names() {
	return apply_filters( "woocommerce_{$this->export_type}_export_column_names", $this->column_names, $this );
}