View source
<?php
class WebformValidationRule extends Migration {
public function __construct(array $arguments) {
parent::__construct($arguments);
$simple_fields = array(
'ruleid',
'rulename',
'validator',
'data',
'error_message',
);
$complex_fields = array(
'nid',
);
$fields = array_merge($simple_fields, $complex_fields);
$query = $this
->query($fields);
$table_name = 'webform_validation_rule';
$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(
'ruleid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'Source node ID',
'alias' => 'r',
),
), MigrateDestinationTable::getKeySchema($table_name));
$this
->addSimpleMappings($simple_fields);
$this
->addFieldMapping('nid', 'nid')
->sourceMigration($arguments['node_migrations']);
}
protected function query($fields) {
$connection = migrate_webform_get_source_connection();
$query = $connection
->select('webform_validation_rule', 'wvr')
->fields('wvr', $fields)
->orderBy('ruleid', 'ASC');
return $query;
}
public function prepareRow($row) {
if (parent::prepareRow($row) === FALSE) {
return FALSE;
}
$row->nid = $this
->handleSourceMigration($this->arguments['node_migrations'], $row->nid);
}
public function prepare($entity, $row) {
}
}