32 lines
733 B
Plaintext
32 lines
733 B
Plaintext
<?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;
|
|
} |