1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @file |
5
|
|
|
* Migrations for Collection Nodes. |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
class DFSMEDCollectionNodes extends DemoFrameworkBaseNodesUUID { |
9
|
|
|
public function __construct($arguments) { |
10
|
|
|
parent::__construct($arguments); |
11
|
|
|
$this->description = t('Import nodes.'); |
12
|
|
|
$this->map = new MigrateSQLMap($this->machineName, |
13
|
|
|
array( |
14
|
|
|
'uuid' => array( |
15
|
|
|
'type' => 'char', |
16
|
|
|
'length' => 36, |
17
|
|
|
'not null' => FALSE, |
18
|
|
|
), |
19
|
|
|
), |
20
|
|
|
MigrateDestinationNode::getKeySchema() |
21
|
|
|
); |
22
|
|
|
$import_path = drupal_get_path('module', 'dfs_med') . '/import/'; |
23
|
|
|
// Create a MigrateSource object. |
24
|
|
|
$this->source = new MigrateSourceCSV($import_path . 'dfs_med.nodes.collection.csv', $this->csvcolumns(), array('header_rows' => 1)); |
25
|
|
|
$this->destination = new MigrateDestinationNode('episodic_collection'); |
26
|
|
|
// Created |
27
|
|
|
$this->addFieldMapping('created', 'created')->defaultValue(strtotime("now")); |
28
|
|
|
// Splash Image |
29
|
|
|
$this->addFieldMapping('field_splash_image', 'splash'); |
30
|
|
|
$this->addFieldMapping('field_splash_image:file_replace')->defaultValue(FILE_EXISTS_REPLACE); |
31
|
|
|
$this->addFieldMapping('field_splash_image:source_dir')->defaultValue($import_path . 'images'); |
32
|
|
|
$this->addFieldMapping('field_splash_image:destination_file', 'filename'); |
33
|
|
|
// Associated Product |
34
|
|
|
$this->addFieldMapping('field_commerce_product', 'commerce')->sourceMigration('DFSMEDCommerceNodes'); |
35
|
|
|
// Brand |
36
|
|
|
$this->addFieldMapping('field_brand', 'brand')->sourceMigration('DFSMEDBrandNodes'); |
37
|
|
|
// Collected Episodes |
38
|
|
|
$this->addFieldMapping('field_collected', 'episodes')->separator(',')->sourceMigration('DFSMEDEpisodeNodes'); |
39
|
|
|
// Featured |
40
|
|
|
$this->addfieldmapping('field_featured', 'featured'); |
41
|
|
|
// Featured Image |
42
|
|
|
$this->addFieldMapping('field_featured_image', 'image'); |
43
|
|
|
$this->addFieldMapping('field_featured_image:file_replace')->defaultValue(FILE_EXISTS_REPLACE); |
44
|
|
|
$this->addFieldMapping('field_featured_image:source_dir')->defaultValue($import_path . 'images'); |
45
|
|
|
$this->addFieldMapping('field_featured_image:destination_file', 'filename'); |
46
|
|
|
// Persona |
47
|
|
|
$this->addFieldMapping('field_persona', 'persona'); |
48
|
|
|
// Site Section |
49
|
|
|
$this->addFieldMapping('field_site_section', 'site_section')->defaultValue("Content"); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
function csvcolumns() { |
|
|
|
|
53
|
|
|
$columns[0] = array('uuid', 'UUID'); |
|
|
|
|
54
|
|
|
$columns[1] = array('title', 'Title'); |
55
|
|
|
$columns[2] = array('brand', 'Brand'); |
56
|
|
|
$columns[3] = array('splash', 'Splash'); |
57
|
|
|
$columns[4] = array('commerce', 'Commerce'); |
58
|
|
|
$columns[5] = array('body', 'Synopsis'); |
59
|
|
|
$columns[6] = array('featured', 'Featured'); |
60
|
|
|
$columns[7] = array('image', 'Image'); |
61
|
|
|
$columns[8] = array('episodes', 'Episodes'); |
62
|
|
|
$columns[9] = array('persona', 'Persona'); |
63
|
|
|
return $columns; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
|
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.