You are here

date_migrate_test.module in Date 7.2

Same filename and directory in other branches
  1. 7.3 tests/date_migrate_test/date_migrate_test.module

Primary hook implementations for the Date Migrate Test module.

File

tests/date_migrate_test/date_migrate_test.module
View 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