|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @file |
|
5
|
|
|
* Migrations for Commerce Product Nodes. |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
class DFSMEDCommerceNodes extends DemoFrameworkBaseCommerceNodes { |
|
9
|
|
|
public function __construct($arguments) { |
|
10
|
|
|
parent::__construct($arguments); |
|
11
|
|
|
$this->description = t('Import Commerce Product nodes.'); |
|
12
|
|
|
$this->map = new MigrateSQLMap($this->machineName, |
|
13
|
|
|
array( |
|
14
|
|
|
'sku' => array( |
|
15
|
|
|
'type' => 'varchar', |
|
16
|
|
|
'length' => 32, |
|
17
|
|
|
'not null' => TRUE, |
|
18
|
|
|
), |
|
19
|
|
|
), |
|
20
|
|
|
MigrateDestinationNode::getKeySchema() |
|
21
|
|
|
); |
|
22
|
|
|
$this->dependencies = array('DFSMEDProducts'); |
|
23
|
|
|
$import_path = drupal_get_path('module', 'dfs_med') . '/import/'; |
|
24
|
|
|
$this->source = new MigrateSourceCSV($import_path . 'dfs_med.nodes.commerce.csv', $this->csvcolumns(), array('header_rows' => 1)); |
|
25
|
|
|
$this->destination = new MigrateDestinationNode('commerce'); |
|
26
|
|
|
// Created |
|
27
|
|
|
$this->addFieldMapping('created', 'created')->defaultValue(strtotime("now")); |
|
28
|
|
|
// Brand |
|
29
|
|
|
$this->addFieldMapping('field_brand', 'brand')->sourceMigration('DFSMEDBrandNodes'); |
|
30
|
|
|
// Commerce |
|
31
|
|
|
$this->addFieldMapping('field_product', 'skus'); |
|
32
|
|
|
// Feature Image |
|
33
|
|
|
$this->addFieldMapping('field_product_image', 'image'); |
|
34
|
|
|
$this->addFieldMapping('field_product_image:file_replace')->defaultValue(FILE_EXISTS_REPLACE); |
|
35
|
|
|
$this->addFieldMapping('field_product_image:source_dir')->defaultValue($import_path . 'images'); |
|
36
|
|
|
$this->addFieldMapping('field_product_image:destination_file', 'filename'); |
|
37
|
|
|
// Booleans |
|
38
|
|
|
$this->addfieldmapping('field_featured', 'featured'); |
|
39
|
|
|
$this->addfieldmapping('field_bestseller', 'bestseller'); |
|
40
|
|
|
// Persona |
|
41
|
|
|
$this->addFieldMapping('field_persona', 'persona'); |
|
42
|
|
|
// Site Section |
|
43
|
|
|
$this->addFieldMapping('field_site_section', 'site_section')->defaultValue("Commerce"); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
function csvcolumns() { |
|
|
|
|
|
|
47
|
|
|
$columns[0] = array('title', 'Title'); |
|
|
|
|
|
|
48
|
|
|
$columns[1] = array('brand', 'Brand'); |
|
49
|
|
|
$columns[2] = array('sku', 'SKU'); |
|
50
|
|
|
$columns[3] = array('image', 'Image'); |
|
51
|
|
|
$columns[4] = array('featured', 'Featured'); |
|
52
|
|
|
$columns[5] = array('bestseller', 'Bestseller'); |
|
53
|
|
|
$columns[7] = array('persona', 'Persona'); |
|
54
|
|
|
return $columns; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
View Code Duplication |
function prepareRow($row) { |
|
|
|
|
|
|
58
|
|
|
$products = array(); |
|
59
|
|
|
foreach (explode(', ', $row->sku) as $sku) { |
|
60
|
|
|
$product = commerce_product_load_by_sku($sku); |
|
61
|
|
|
$products[] = $product->product_id; |
|
62
|
|
|
} |
|
63
|
|
|
$row->skus = $products; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
class DFSMEDProducts extends DemoFrameworkBaseProducts { |
|
69
|
|
|
public function __construct($arguments) { |
|
70
|
|
|
parent::__construct($arguments); |
|
71
|
|
|
$this->description = t('Import Commerce products.'); |
|
72
|
|
|
// Create a map object for tracking the relationships between source rows |
|
73
|
|
|
$this->map = new MigrateSQLMap($this->machineName, |
|
74
|
|
|
array( |
|
75
|
|
|
'sku' => array( |
|
76
|
|
|
'type' => 'varchar', |
|
77
|
|
|
'length' => 32, |
|
78
|
|
|
'not null' => TRUE, |
|
79
|
|
|
), |
|
80
|
|
|
), |
|
81
|
|
|
MigrateDestinationEntityAPI::getKeySchema('commerce_product', 'product') |
|
82
|
|
|
); |
|
83
|
|
|
$this->destination = new MigrateDestinationEntityAPI('commerce_product', 'product'); |
|
84
|
|
|
// Define a default import path. |
|
85
|
|
|
$import_path = drupal_get_path('module', 'dfs_med') . '/import/'; |
|
86
|
|
|
// Create a MigrateSource object. |
|
87
|
|
|
$this->source = new MigrateSourceCSV($import_path . 'dfs_med.nodes.commerce.csv', $this->csvcolumns(), array('header_rows' => 1)); |
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
View Code Duplication |
function csvcolumns() { |
|
|
|
|
|
|
91
|
|
|
$columns[0] = array('title', 'Title'); |
|
|
|
|
|
|
92
|
|
|
$columns[2] = array('sku', 'SKU'); |
|
93
|
|
|
$columns[6] = array('commerce_price', 'Price'); |
|
94
|
|
|
return $columns; |
|
95
|
|
|
} |
|
96
|
|
|
|
|
97
|
|
|
} |
|
98
|
|
|
|
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.