commerce_file.migrate.inc in Commerce File 7
Integration with the Migrate module.
File
commerce_file.migrate.incView source
<?php
/**
* @file
* Integration with the Migrate module.
*/
/*
* Implements hook_migrate_api().
*/
function commerce_file_migrate_api() {
$api = array(
'api' => 2,
'field handlers' => array(
'MigrateCommerceFileFieldHandler',
),
);
return $api;
}
Functions
Name | Description |
---|---|
commerce_file_migrate_api |