You are here

public function MigrateUuidHandler::fields in Migrate Extras 6.2

Make the destination field visible.

File

./uuid.inc, line 19
Support for Universally Unique Identifier (uuid) module.

Class

MigrateUuidHandler
Generic UUID Handler.

Code

public function fields() {
  if (module_exists('uuid')) {
    return array(
      'uuid' => t('Universally Unique IDentifier'),
    );
  }
  else {
    return array();
  }
}