Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 28
Node
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
42
0.00% covered (danger)
0.00%
0 / 28
 buildMigrations
0.00% covered (danger)
0.00%
0 / 1
42
0.00% covered (danger)
0.00%
0 / 28
<?php
/**
 * @file
 * Contains \Drupal\node\Plugin\migrate\builder\d7\Node.
 */
namespace Drupal\node\Plugin\migrate\builder\d7;
use Drupal\migrate\Entity\Migration;
use Drupal\migrate_drupal\Plugin\migrate\builder\CckBuilder;
/**
 * @PluginID("d7_node")
 */
class Node extends CckBuilder {
  /**
   * {@inheritdoc}
   */
  public function buildMigrations(array $template) {
    $migrations = [];
    // Read all field instance definitions in the source database.
    $fields = array();
    foreach ($this->getSourcePlugin('d7_field_instance', $template['source']) as $field) {
      $info = $field->getSource();
      $fields[$info['entity_type']][$info['bundle']][$info['field_name']] = $info;
    }
    foreach ($this->getSourcePlugin('d7_node_type', $template['source']) as $node_type) {
      $bundle = $node_type->getSourceProperty('type');
      $values = $template;
      $values['id'] .= '__' . $bundle;
      $values['label'] = $this->t('@label (@type)', ['@label' => $values['label'], '@type' => $node_type->getSourceProperty('name')]);
      $values['source']['node_type'] = $bundle;
      $migration = Migration::create($values);
      if (isset($fields['node'][$bundle])) {
        foreach ($fields['node'][$bundle] as $field => $data) {
          if ($this->cckPluginManager->hasDefinition($data['type'])) {
            $this->getCckPlugin($data['type'])
              ->processCckFieldValues($migration, $field, $data);
          }
          else {
            $migration->setProcessOfProperty($field, $field);
          }
        }
      }
      $migrations[] = $migration;
    }
    return $migrations;
  }
}