You are here

public function MigrateDestinationTableCopy::__toString in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 plugins/destinations/table_copy.inc \MigrateDestinationTableCopy::__toString()

Derived classes must implement __toString().

Return value

string Description of the destination being migrated into

Overrides MigrateDestination::__toString

File

plugins/destinations/table_copy.inc, line 19
Copies data_row into a table using drupal_write_record()

Class

MigrateDestinationTableCopy
Destination class implementing migration into a single table.

Code

public function __toString() {
  $output = t('Table copy');
  return $output;
}