first import

Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
bachy
2012-04-12 10:06:24 +02:00
commit f62d12ba55
2 changed files with 61 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
/**
* @file
* This is the file description for Migrate Materio module.
*
* In this more verbose, multi-line description, you can specify what this
* file does exactly. Make sure to wrap your documentation in column 78 so
* that the file can be displayed nicely in default-sized consoles.
*/
/**
* Implements hook_menu().
*/
function migrate_materio_menu() {
$items = array();
// Type '$item ⇥' to create a new menu item.
return $items;
}
/**
* You must implement hook_migrate_api(), setting the API level to 2, for
* your migration classes to be recognized by the Migrate module (for the 7.x-2.x branch).
*/
function migrate_materio_migrate_api() {
$api = array(
'api' => 2,
);
return $api;
}