You are here

public function MigratePathNodeHandler::fields in Migrate 6.2

File

plugins/destinations/path.inc, line 13
Support for paths in core Drupal objects

Class

MigratePathNodeHandler
@file Support for paths in core Drupal objects

Code

public function fields($entity_type, $bundle) {
  switch ($entity_type) {
    case 'node':
      return array(
        'path' => t('Node: Path alias'),
      );
  }
  return array();
}