date_migrate_test.module in Date 7.3
Same filename and directory in other branches
Primary hook implementations for the Date Migrate Test module.
File
tests/date_migrate_test/date_migrate_test.moduleView source
<?php
/**
* @file
* Primary hook implementations for the Date Migrate Test module.
*/
/**
* Implements hook_migrate_api().
*/
function date_migrate_test_migrate_api() {
return array(
'api' => 2,
'migrations' => array(
'DateExample' => array(
'class_name' => 'DateExampleMigration',
),
),
);
}
Functions
Name | Description |
---|---|
date_migrate_test_migrate_api | Implements hook_migrate_api(). |