You are here

public function MigratePathEntityHandler::fields in Migrate 7.2

Implementation of MigrateDestinationHandler::fields().

File

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

Class

MigratePathEntityHandler
@file Support for paths in core Drupal objects

Code

public function fields($entity_type, $bundle, $migration = NULL) {
  if (module_exists('path')) {
    return array(
      'path' => t('Path alias'),
    );
  }
  return array();
}