public function Sql::mapTableName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::mapTableName()
The name of the database map table.
Return value
string The map table name.
5 calls to Sql::mapTableName()
- Sql::countHelper in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php - Counts records in a table.
- Sql::delete in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php - Deletes the map and message entries for a given source record.
- Sql::deleteDestination in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php - Deletes the map and message table entries for a given destination row.
- Sql::destroy in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php - Removes any persistent storage used by this map.
- Sql::lookupSourceID in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php - Looks up the source identifier.
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php, line 213 - Contains \Drupal\migrate\Plugin\migrate\id_map\Sql.
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function mapTableName() {
$this
->init();
return $this->mapTableName;
}