public function MigrateDestinationBiblioType::complete in Bibliography Module 7.3
Give handlers a shot at modifying the object (or taking additional action) after saving it.
Parameters
$entity: OGMembership object to build. This is the complete object after saving.
$source_row: Raw source data object - passed through to complete handlers.
1 call to MigrateDestinationBiblioType::complete()
- MigrateDestinationBiblioType::import in includes/
migrate/ plugins/ destinations/ biblio_type.inc - Import a biblio type.
File
- includes/
migrate/ plugins/ destinations/ biblio_type.inc, line 71
Class
Code
public function complete($entity, stdClass $row) {
// We do nothing here but allow child classes to act.
$migration = Migration::currentMigration();
// Then call any complete handler for this specific Migration.
if (method_exists($migration, 'complete')) {
$migration
->complete($entity, $row);
}
}