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 85ad3d82 Assos Assos
<?php
2
3
/**
4
 * @file
5 599a39cd Assos Assos
 * Primary hook implementations for the Date Migrate Test module.
6 85ad3d82 Assos Assos
 */
7
8
/**
9
 * Implements hook_migrate_api().
10
 */
11 599a39cd Assos Assos
function date_migrate_test_migrate_api() {
12 85ad3d82 Assos Assos
  $api = array(
13
    'api' => 2,
14
    'migrations' => array(
15 599a39cd Assos Assos
      'DateExample' => array('class_name' => 'DateExampleMigration'),
16 85ad3d82 Assos Assos
    ),
17
  );
18
  return $api;
19
}