Search for columns

  1. Search 7.x for columns
  2. Search 9.5.x for columns
  3. Search 8.9.x for columns
  4. Search 11.x for columns
  5. Search main for columns
  6. Other projects
Title Object type File name Summary
BaseFieldDefinition::getColumns function core/lib/Drupal/Core/Field/BaseFieldDefinition.php Returns the field columns, as defined in the field schema.
ContentTranslationSyncUnitTest::$columns property core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php All the field columns.
ContentTranslationSyncUnitTest::testDifferingSyncedColumns function core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php Tests that one change in a synchronized column triggers a change in all columns.
DefaultTableMapping::$allColumns property core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php A list of all database columns per table.
DefaultTableMapping::$extraColumns property core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php A list of database columns which store denormalized data per table.
DefaultTableMapping::getAllColumns function core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php Gets a list of all database columns for a given table.
DefaultTableMapping::getExtraColumns function core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php Gets a list of extra database columns, which store denormalized data.
DefaultTableMapping::getReservedColumns function core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php Gets the list of columns that can not be used as field type columns.
DefaultTableMapping::setExtraColumns function core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php Adds extra columns for a table to the table mapping.
DefaultTableMappingTest::testGetAllColumns function core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php Tests DefaultTableMapping::getAllColumns().
DefaultTableMappingTest::testGetExtraColumns function core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php Tests DefaultTableMapping::getExtraColumns().
DriverSpecificSchemaTestBase::testFindPrimaryKeyColumns function core/tests/Drupal/KernelTests/Core/Database/DriverSpecificSchemaTestBase.php @covers ::findPrimaryKeyColumns[[api-linebreak]]
DriverSpecificSchemaTestBase::testUnsignedColumns function core/tests/Drupal/KernelTests/Core/Database/DriverSpecificSchemaTestBase.php Tests creating unsigned columns and data integrity thereof.
EntityQueryTest::testBaseFieldMultipleColumns function core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php Tests base fields with multiple columns.
EntitySchemaTest::testModifyingTranslatableColumnSchema function core/tests/Drupal/KernelTests/Core/Entity/EntitySchemaTest.php Tests that modifying the UUID field for a translatable entity works.
FieldStorageConfig::getColumns function core/modules/field/src/Entity/FieldStorageConfig.php Returns the field columns, as defined in the field schema.
FieldStorageDefinitionInterface::getColumns function core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php Returns the field columns, as defined in the field schema.
form-two-columns.css file core/themes/claro/css/layout/form-two-columns.css /*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* Layout overrides for the menu link add/edit form.
*/
.layout-region {
box-sizing:…
form-two-columns.html.twig file core/themes/claro/templates/form/form-two-columns.html.twig <div class="layout-form clearfix">
<div class="layout-region layout-region--main">
<div class="layout-region__content">
{% block main %}
{% endblock %}
</div>
</div>
form-two-columns.pcss.css file core/themes/claro/css/layout/form-two-columns.pcss.css /**
* Layout overrides for the menu link add/edit form.
*/
.layout-region {
box-sizing: border-box;
}

.layout-region--footer .layout-region__content {
margin-top: var(--space-l);
}

/**
* Move to two column layout at wider widths.
*/
@media…
PathFieldDefinitionTest::testGetColumns function core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php @covers ::getColumns[[api-linebreak]]
@covers ::getSchema[[api-linebreak]]
Schema::createColumnsSql function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Build the SQL expression for creating columns.
Schema::findPrimaryKeyColumns function core/lib/Drupal/Core/Database/Schema.php Finds the primary key columns of a table, from the database.
Schema::findPrimaryKeyColumns function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Finds the primary key columns of a table, from the database.
Schema::findPrimaryKeyColumns function core/modules/mysql/src/Driver/Database/mysql/Schema.php Finds the primary key columns of a table, from the database.
Schema::findPrimaryKeyColumns function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Finds the primary key columns of a table, from the database.
SchemaIntrospectionTestTrait::assertIndexOnColumns function core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php Checks that an index covering exactly the given column names exists.
SchemaIntrospectionTestTrait::assertNoIndexOnColumns function core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php Checks that an index covering exactly the given column names doesn't exist.
SchemaTableColumnSizeTooLargeException class core/lib/Drupal/Core/Database/Exception/SchemaTableColumnSizeTooLargeException.php Exception thrown if a column size is too large on table creation.
SchemaTableColumnSizeTooLargeException.php file core/lib/Drupal/Core/Database/Exception/SchemaTableColumnSizeTooLargeException.php
SchemaTest::testSchemaTableColumnSizeTooLargeException function core/modules/mysql/tests/src/Kernel/mysql/SchemaTest.php Tests SchemaTableColumnSizeTooLargeException.
SqlContentEntityStorage::isColumnSerial function core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php Checks whether a field column should be treated as serial.
SqlContentEntityStorageSchema::getColumnSchemaRelevantKeys function core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php Returns a list of column schema keys affecting data storage.
StyleTableTest::testFieldInColumns function core/modules/views/tests/src/Functional/Plugin/StyleTableTest.php Tests table fields in columns.
StyleTableTest::testResponsiveMergedColumns function core/modules/views/tests/src/Functional/Plugin/StyleTableTest.php Tests responsive classes and column assigning.
Table::sanitizeColumns function core/modules/views/src/Plugin/views/style/Table.php Sanitizes the columns.
TableMappingInterface::getAllColumns function core/lib/Drupal/Core/Entity/Sql/TableMappingInterface.php Gets a list of all database columns for a given table.
TableMappingInterface::getExtraColumns function core/lib/Drupal/Core/Entity/Sql/TableMappingInterface.php Gets a list of extra database columns, which store denormalized data.
TableMappingInterface::getReservedColumns function core/lib/Drupal/Core/Entity/Sql/TableMappingInterface.php Gets the list of columns that can not be used as field type columns.
TestDefaultTableMapping::setExtraColumns function core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php Adds extra columns for a table to the table mapping.
TestSqlContentDefaultTableMapping::setExtraColumns function core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php Adds extra columns for a table to the table mapping.

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