Skip to content

Instantly share code, notes, and snippets.

@pixelite
Created September 12, 2015 19:17
migrate_programs.module
<?php
/**
* Implements hook_migrate_api().
*/
function migrate_programs_migrate_api() {
return array(
'api' => 2,
'groups' => array(
'migrate_programs' => array(
'title' => t('Migrate Programs'),
),
),
'migrations' => array(
'programs' => array(
'class_name' => 'MigratePrograms',
'group_name' => 'migrate_programs',
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment