function DefaultTableMapping::setExtraColumns

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php \Drupal\Core\Entity\Sql\DefaultTableMapping::setExtraColumns()
  2. 10 core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php \Drupal\Core\Entity\Sql\DefaultTableMapping::setExtraColumns()
  3. 11.x core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php \Drupal\Core\Entity\Sql\DefaultTableMapping::setExtraColumns()

Adds a extra columns for a table to the table mapping.

@internal

@todo Make this method protected in drupal:9.0.0.

Parameters

string $table_name: The name of table to add the extra columns for.

string[] $column_names: The list of column names.

Return value

$this

See also

https://www.drupal.org/node/3067336

2 calls to DefaultTableMapping::setExtraColumns()
TestDefaultTableMapping::setExtraColumns in core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php
Adds a extra columns for a table to the table mapping.
TestSqlContentDefaultTableMapping::setExtraColumns in core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php
Adds a extra columns for a table to the table mapping.
2 methods override DefaultTableMapping::setExtraColumns()
TestDefaultTableMapping::setExtraColumns in core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php
Adds a extra columns for a table to the table mapping.
TestSqlContentDefaultTableMapping::setExtraColumns in core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php
Adds a extra columns for a table to the table mapping.

File

core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php, line 483

Class

DefaultTableMapping
Defines a default table mapping class.

Namespace

Drupal\Core\Entity\Sql

Code

public function setExtraColumns($table_name, array $column_names) {
    $this->extraColumns[$table_name] = $column_names;
    // Force the re-computation of the column list.
    unset($this->allColumns[$table_name]);
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.