Projet

Général

Profil

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

root / drupal7 / sites / all / modules / date / date_migrate / date_migrate_example / date_migrate_example.module @ db9ffd17

1
<?php
2

    
3
/**
4
 * @file
5
 * Migration integration for Date Migrate Example.
6
 */
7

    
8
include_once 'date_migrate_example.features.inc';
9

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