You are here

public function MigrateDestinationNode::__construct in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/destinations/node.inc \MigrateDestinationNode::__construct()

Basic initialization

Parameters

string $bundle: A.k.a. the content type (page, article, etc.) of the node.

array $options: Options applied to nodes.

Overrides MigrateDestinationEntity::__construct

File

plugins/destinations/node.inc, line 45
Support for node destinations.

Class

MigrateDestinationNode
Destination class implementing migration into nodes.

Code

public function __construct($bundle, array $options = array()) {
  parent::__construct('node', $bundle, $options);
}