public function MigrateSourceReference::__toString in Relation 7
Same name and namespace in other branches
- 8.2 relation_migrate/relation_migrate.source.inc \MigrateSourceReference::__toString()
- 8 relation_migrate/relation_migrate.source.inc \MigrateSourceReference::__toString()
Return a string representing the source, for display in the UI.
File
- relation_migrate/
relation_migrate.source.inc, line 49 - Source plugin for *reference fields.
Class
- MigrateSourceReference
- Migration source for *ference field. This source is primary used in relation_migrate to convert *reference entries into relation entities.
Code
public function __toString() {
return t('Migrate %type fields: %fields', array(
'%type' => $this->field_type,
'%fields' => implode(',', $this->fields),
));
}