You are here

class TestDefaultTableMapping in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php \Drupal\Tests\Core\Entity\Sql\TestDefaultTableMapping
  2. 10 core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php \Drupal\Tests\Core\Entity\Sql\TestDefaultTableMapping

Extends DefaultTableMapping to allow calling its protected methods.

Hierarchy

Expanded class hierarchy of TestDefaultTableMapping

File

core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php, line 606

Namespace

Drupal\Tests\Core\Entity\Sql
View source
class TestDefaultTableMapping extends DefaultTableMapping {

  /**
   * {@inheritdoc}
   */
  public function setFieldNames($table_name, array $field_names) {
    return parent::setFieldNames($table_name, $field_names);
  }

  /**
   * {@inheritdoc}
   */
  public function setExtraColumns($table_name, array $column_names) {
    return parent::setExtraColumns($table_name, $column_names);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DefaultTableMapping::$allColumns protected property A list of all database columns per table.
DefaultTableMapping::$baseTable protected property The base table of the entity.
DefaultTableMapping::$columnMapping protected property A mapping of column names per field name.
DefaultTableMapping::$dataTable protected property The table that stores field data, if the entity has multilingual support.
DefaultTableMapping::$entityType protected property The entity type definition.
DefaultTableMapping::$extraColumns protected property A list of database columns which store denormalized data per table.
DefaultTableMapping::$fieldNames protected property A list of field names per table.
DefaultTableMapping::$fieldStorageDefinitions protected property The field storage definitions of this mapping.
DefaultTableMapping::$prefix protected property The prefix to be used by all the tables of this mapping.
DefaultTableMapping::$revisionDataTable protected property The table that stores revision field data if the entity supports revisions and has multilingual support.
DefaultTableMapping::$revisionTable protected property The table that stores revisions, if the entity supports revisions.
DefaultTableMapping::allowsSharedTableStorage public function Checks whether the given field can be stored in a shared table.
DefaultTableMapping::create public static function Initializes the table mapping.
DefaultTableMapping::generateFieldTableName protected function Generates a safe and unambiguous field table name.
DefaultTableMapping::getAllColumns public function Gets a list of all database columns for a given table. Overrides TableMappingInterface::getAllColumns
DefaultTableMapping::getAllFieldTableNames public function Gets all the table names in which an entity field is stored. Overrides TableMappingInterface::getAllFieldTableNames
DefaultTableMapping::getBaseTable public function Gets the base table name.
DefaultTableMapping::getColumnNames public function Gets a mapping of field columns to database columns for a given field. Overrides TableMappingInterface::getColumnNames
DefaultTableMapping::getDataTable public function Gets the data table name.
DefaultTableMapping::getDedicatedDataTableName public function Generates a table name for a field data table.
DefaultTableMapping::getDedicatedRevisionTableName public function Generates a table name for a field revision archive table.
DefaultTableMapping::getDedicatedTableNames public function Gets a list of dedicated table names for this mapping.
DefaultTableMapping::getExtraColumns public function Gets a list of extra database columns, which store denormalized data. Overrides TableMappingInterface::getExtraColumns
DefaultTableMapping::getFieldColumnName public function Generates a column name for a field property. Overrides TableMappingInterface::getFieldColumnName
DefaultTableMapping::getFieldNames public function Gets a list of names for entity fields stored in the specified table. Overrides TableMappingInterface::getFieldNames
DefaultTableMapping::getFieldTableName public function Gets the table name for a given column. Overrides TableMappingInterface::getFieldTableName
DefaultTableMapping::getReservedColumns public function Gets the list of columns that can not be used as field type columns. Overrides TableMappingInterface::getReservedColumns
DefaultTableMapping::getRevisionDataTable public function Gets the revision data table name.
DefaultTableMapping::getRevisionTable public function Gets the revision table name.
DefaultTableMapping::getTableNames public function Gets a list of table names for this mapping. Overrides TableMappingInterface::getTableNames
DefaultTableMapping::requiresDedicatedTableStorage public function Checks whether the given field has to be stored in a dedicated table.
DefaultTableMapping::__construct public function Constructs a DefaultTableMapping.
TableMappingInterface::DELTA constant A property that represents delta used in entity query conditions.
TestDefaultTableMapping::setExtraColumns public function Adds extra columns for a table to the table mapping. Overrides DefaultTableMapping::setExtraColumns
TestDefaultTableMapping::setFieldNames public function Adds field columns for a table to the table mapping. Overrides DefaultTableMapping::setFieldNames