public function MigratePathautoHandler::fields in Migrate Extras 6.2
Same name and namespace in other branches
- 7.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_perform_alias' => t('Pathauto: Perform aliasing (set to 0 to prevent alias generation during migration'),
);
}
else {
return array();
}
}