Invokes all implemented hook_migrate_$hook functions, return a merged array of their return values. The first time it is called, in invokes hook_migrate_init(), allowing implementing modules to do any one-time initialization they require (such as including required files).
Invokes all implemented hook_migrate_$hook functions, with the specific signature
hook_migrate_$hook(&object, $tblinfo, $row)
(the point being to support
passing $object as reference to all hook implementations).
For use in prepare and complete hooks. These hooks return an array of message arrays - to generate an element of the message array, pass a message and an optional message type. Types MIGRATE_MESSAGE_ERROR, MIGRATE_MESSAGE_WARNING, and MIGRATE_MESSAGE_NOTICE will abort creation of the destination object, while MIGRATE_MESSAGE_INFORMATIONAL will allow creation to proceed.
For use in import hooks - if creation of the destination object succeeded, pass the source view primary key and the resulting destination ID to this function to be recorded in the content set's map table.
For a given destination and an ID from the source ID, return the corresponding destination ID.
Returns the name of the map table for the specified content set (useful for generating queries and views including the map table).
Returns the name of the message table for the specified content set (useful for generating queries and views including the message table).