FINAL suepr merge step : added all modules to this super repos

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-19 16:46:59 +02:00
7585 changed files with 1723356 additions and 18 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* @file
* Documentation for hooks defined by Migrate.
*/
/**
* Registers your module as an implementor of Migrate-based classes.
*/
function hook_migrate_api() {
$api = array(
'api' => 2,
);
return $api;
}
/**
* Provides text to be displayed at the top of the dashboard page (migrate_ui).
*/
function hook_migrate_overview() {
return t('<p>Listed below are all the migration processes defined for migration
of our old site to Drupal. Open issues applying to specific migrations
can be viewed by clicking the migration name. Also, details on how each
migration will behave when incrementally migrated are provided.</p>
<p><a href="http://issuetracker.example.com/?project=migration&status=open">Open migration tickets</a></p>');
}