You are here

public function WebformEmails::__construct in Migrate Webform 7

General initialization of a Migration object.

Overrides Migration::__construct

File

./emails.inc, line 5

Class

WebformEmails

Code

public function __construct(array $arguments) {
  parent::__construct($arguments);
  $simple_fields = array(
    'eid',
    'email',
    'subject',
    'from_name',
    'from_address',
    'template',
    'excluded_components',
    'html',
    'attachments',
  );
  $complex_fields = array(
    'nid',
  );
  $fields = array_merge($simple_fields, $complex_fields);
  $query = $this
    ->query($fields);
  $table_name = 'webform_emails';
  $this->source = new MigrateSourceSQL($query, $fields, NULL, array(
    'map_joinable' => FALSE,
    'skip_count' => FALSE,
  ));
  $this->destination = new MigrateDestinationTable($table_name);
  $this->map = new MigrateSQLMap($this->machineName, array(
    'nid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'description' => 'Source node ID',
      'alias' => 'n',
    ),
    'eid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'description' => 'Source component ID',
      'alias' => 'e',
    ),
  ), MigrateDestinationTable::getKeySchema($table_name));
  $this
    ->addSimpleMappings($simple_fields);
  $this
    ->addFieldMapping('nid', 'nid')
    ->sourceMigration($arguments['node_migrations']);
  $this
    ->addFieldMapping('extra', NULL)
    ->defaultValue(serialize(array()));

  // is this ok empty?
}