You are here

workbench_moderation.migrate.inc in Workbench Moderation 7.3

Same filename and directory in other branches
  1. 7 workbench_moderation.migrate.inc

File

workbench_moderation.migrate.inc
View source
<?php

class WorkbenchModerationMigrateDestinationHandler extends MigrateDestinationHandler {
  public function __construct() {
  }
  public function handlesType($destination) {
    return $destination == 'Node';
  }
  public function fields($entity_type, $bundle_type) {
    $fields = array();
    if (workbench_moderation_node_type_moderated($bundle_type)) {
      $fields['workbench_moderation_state_new'] = t('Moderation state');
    }
    return $fields;
  }

}