public function MigrateCommentNodeHandler::fields in Migrate 7.2
Implementation of MigrateDestinationHandler::fields().
File
- plugins/
destinations/ comment.inc, line 378 - Support for comment destinations.
Class
Code
public function fields($entity_type, $bundle, $migration = NULL) {
$fields = array();
$fields['comment'] = t('Whether comments may be posted to the node');
return $fields;
}