You are here

protected static function PriceListItemExportForm::buildHeader in Commerce Pricelist 8.2

Builds the CSV header row.

Parameters

array $mapping: The column mapping array.

Return value

array The CSV header row.

1 call to PriceListItemExportForm::buildHeader()
PriceListItemExportForm::batchProcess in src/Form/PriceListItemExportForm.php
Batch process to export price list items to CSV.

File

src/Form/PriceListItemExportForm.php, line 322

Class

PriceListItemExportForm

Namespace

Drupal\commerce_pricelist\Form

Code

protected static function buildHeader(array $mapping) {

  // Nothing to do, but could potentially be overridden by a child class.
  return array_filter($mapping);
}