You are here

ProductTab.php in Commerce Migrate 3.1.x

File

modules/csv_example/src/Plugin/migrate/source/ProductTab.php
View source
<?php

namespace Drupal\commerce_migrate_csv_example\Plugin\migrate\source;

use Drupal\migrate_source_csv\Plugin\migrate\source\CSV;

/**
 * Yields values for each product tab paragraph.
 *
 * There are two set of columns for the paragraph product tab in each row of the
 * example source. Create a new row for each set where at least one value of the
 * set is non empty.See import_tab for the column names.
 *
 * @MigrateSource(
 *   id = "csv_example_product_tab"
 * )
 */
class ProductTab extends CSV {

  /**
   * {@inheritdoc}
   */
  public function initializeIterator() {
    $file = parent::initializeIterator();
    return $this
      ->getYield($file);
  }

  /**
   * Prepares one row per tab paragraph values in the source row.
   *
   * @param \Generator $file
   *   The source CSV file object.
   *
   * @codingStandardsIgnoreStart
   *
   * @return \Generator
   *   A new row, one for each filename in the source image column.
   *
   * @codingStandardsIgnoreEnd
   */
  public function getYield(\Generator $file) {
    foreach ($file as $row) {
      for ($i = 1; $i < 3; $i++) {
        if (!empty($row["tab_title{$i}"]) || !empty($row["tab_content{$i}"]) || !empty($row["tab_content{$i}"])) {
          $new_row = $row;
          $new_row['tab_title'] = trim($row["tab_title{$i}"]);
          $new_row['tab_content'] = trim($row["tab_content{$i}"]);
          $new_row['tab_cta'] = trim($row["tab_cta{$i}"]);
          (yield $new_row);
        }
      }
    }
  }

}

Classes

Namesort descending Description
ProductTab Yields values for each product tab paragraph.