public function MigrateDestinationTable::__toString in Migrate 6.2
Same name and namespace in other branches
- 7.2 plugins/destinations/table.inc \MigrateDestinationTable::__toString()
Derived classes must implement __toString().
Return value
string Description of the destination being migrated into
Overrides MigrateDestination::__toString
File
- plugins/
destinations/ table.inc, line 53 - Support for tables defined through the Schema API.
Class
- MigrateDestinationTable
- Destination class implementing migration into a single table defined through the Schema API.
Code
public function __toString() {
$output = t('Table !name', array(
'!name' => $this->tableName,
));
return $output;
}