Projet

Général

Profil

Paste
Télécharger (334 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / date / tests / date_migrate_test / date_migrate_test.module @ 599a39cd

1
<?php
2

    
3
/**
4
 * @file
5
 * Primary hook implementations for the Date Migrate Test module.
6
 */
7

    
8
/**
9
 * Implements hook_migrate_api().
10
 */
11
function date_migrate_test_migrate_api() {
12
  $api = array(
13
    'api' => 2,
14
    'migrations' => array(
15
      'DateExample' => array('class_name' => 'DateExampleMigration'),
16
    ),
17
  );
18
  return $api;
19
}