This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
abstract class garmentboxFieldCollectionMigration extends Migration { | |
public function __construct() { | |
parent::__construct(); | |
$this->description = t('Import @bundle field collections from CSV file.', array('@bundle' => $this->bundle)); | |
// Create a map object for tracking the relationships between source rows | |
$key = array( |
NewerOlder