You are here

public function TableMappingInterface::getAllColumns in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Sql/TableMappingInterface.php \Drupal\Core\Entity\Sql\TableMappingInterface::getAllColumns()
  2. 10 core/lib/Drupal/Core/Entity/Sql/TableMappingInterface.php \Drupal\Core\Entity\Sql\TableMappingInterface::getAllColumns()

Gets a list of all database columns for a given table.

Parameters

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

Return value

string[] An array of database column names for this table. Both field columns and extra columns are returned.

1 method overrides TableMappingInterface::getAllColumns()
DefaultTableMapping::getAllColumns in core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php
Gets a list of all database columns for a given table.

File

core/lib/Drupal/Core/Entity/Sql/TableMappingInterface.php, line 45

Class

TableMappingInterface
Provides a common interface for mapping field columns to SQL tables.

Namespace

Drupal\Core\Entity\Sql

Code

public function getAllColumns($table_name);