You are here

public function MigratePathautoHandler::fields in Migrate Extras 7.2

Same name and namespace in other branches
  1. 6.2 pathauto.inc \MigratePathautoHandler::fields()

Make the destination field visible.

File

./pathauto.inc, line 19
Support for the Pathauto module.

Class

MigratePathautoHandler
Field handler.

Code

public function fields() {
  if (module_exists('pathauto')) {
    return array(
      'pathauto' => t('Pathauto: Perform aliasing (set to 0 to prevent alias generation during migration'),
    );
  }
  else {
    return array();
  }
}