Sql::$mapTableName |
property |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
The migration map table name. |
Sql::$messageTableName |
property |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
The message table name. |
Sql::$tableQueue |
property |
core/modules/views/src/Plugin/views/query/Sql.php |
A list of tables in the order they should be added, keyed by alias. |
Sql::$tables |
property |
core/modules/views/src/Plugin/views/query/Sql.php |
Holds an array of tables and counts added so that we can create aliases. |
Sql::addTable |
function |
core/modules/views/src/Plugin/views/query/Sql.php |
Add a table to the query, ensuring the path exists. |
Sql::ensureTable |
function |
core/modules/views/src/Plugin/views/query/Sql.php |
Ensures a table exists in the queue. |
Sql::ensureTables |
function |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
Create the map and message tables if they don't already exist. |
Sql::getQualifiedMapTableName |
function |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
Get the fully qualified map table name. |
Sql::getTableInfo |
function |
core/modules/views/src/Plugin/views/query/Sql.php |
Get the information associated with a table. |
Sql::getTableQueue |
function |
core/modules/views/src/Plugin/views/query/Sql.php |
Returns a reference to the table queue array for this query. |
Sql::mapTableName |
function |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
The name of the database map table. |
Sql::markTable |
function |
core/modules/views/src/Plugin/views/query/Sql.php |
|
Sql::messageTableName |
function |
core/modules/migrate/src/Plugin/migrate/id_map/Sql.php |
The name of the database message table. |
Sql::queueTable |
function |
core/modules/views/src/Plugin/views/query/Sql.php |
Add a table to the query without ensuring the path. |
SqlContentEntityStorage::$baseTable |
property |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
The base table of the entity. |
SqlContentEntityStorage::$dataTable |
property |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
The table that stores properties, if the entity has multilingual support. |
SqlContentEntityStorage::$revisionDataTable |
property |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
The table that stores revision field data if the entity supports revisions. |
SqlContentEntityStorage::$revisionTable |
property |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
The table that stores revisions, if the entity supports revisions. |
SqlContentEntityStorage::$tableMapping |
property |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
The mapping of field columns to SQL tables. |
SqlContentEntityStorage::deleteFromDedicatedTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Deletes values of fields in dedicated tables for all revisions. |
SqlContentEntityStorage::deleteRevisionFromDedicatedTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Deletes values of fields in dedicated tables for all revisions. |
SqlContentEntityStorage::getBaseTable |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Gets the base table name. |
SqlContentEntityStorage::getCustomTableMapping |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Gets a table mapping for the specified entity type and storage definitions. |
SqlContentEntityStorage::getDataTable |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Gets the data table name. |
SqlContentEntityStorage::getRevisionDataTable |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Gets the revision data table name. |
SqlContentEntityStorage::getRevisionTable |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Gets the revision table name. |
SqlContentEntityStorage::getTableMapping |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Gets a table mapping for the entity's SQL tables. |
SqlContentEntityStorage::initTableLayout |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Initializes table name variables. |
SqlContentEntityStorage::loadFromDedicatedTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Loads values of fields stored in dedicated tables for a group of entities. |
SqlContentEntityStorage::loadFromSharedTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Loads values for fields stored in the shared data tables. |
SqlContentEntityStorage::saveToDedicatedTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Saves values of fields that use dedicated tables. |
SqlContentEntityStorage::saveToSharedTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Saves fields that use the shared tables. |
SqlContentEntityStorage::setTableMapping |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php |
Sets the wrapped table mapping definition. |
SqlContentEntityStorageSchema::addSharedTableFieldForeignKey |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Adds a foreign key for the specified field to the given schema definition. |
SqlContentEntityStorageSchema::addSharedTableFieldIndex |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Adds an index for the specified field to the given schema definition. |
SqlContentEntityStorageSchema::addSharedTableFieldUniqueKey |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Adds a unique key for the specified field to the given schema definition. |
SqlContentEntityStorageSchema::addTableDefaults |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Adds defaults to a table schema definition. |
SqlContentEntityStorageSchema::createDedicatedTableSchema |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Creates the schema for a field stored in a dedicated table. |
SqlContentEntityStorageSchema::createSharedTableSchema |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Creates the schema for a field stored in a shared table. |
SqlContentEntityStorageSchema::deleteDedicatedTableSchema |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Deletes the schema for a field stored in a dedicated table. |
SqlContentEntityStorageSchema::deleteSharedTableSchema |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Deletes the schema for a field stored in a shared table. |
SqlContentEntityStorageSchema::getDedicatedTableSchema |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Gets the SQL schema for a dedicated table. |
SqlContentEntityStorageSchema::getEntitySchemaTables |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Gets a list of entity type tables. |
SqlContentEntityStorageSchema::getSharedTableFieldSchema |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Gets the schema for a single field definition. |
SqlContentEntityStorageSchema::getTableMapping |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Refreshes the table mapping with updated definitions. |
SqlContentEntityStorageSchema::getTableNames |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Gets a list of table names for this entity type, field storage and mapping. |
SqlContentEntityStorageSchema::getTemporaryTableMappingPrefix |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Gets a string to be used as a prefix for a temporary table mapping object. |
SqlContentEntityStorageSchema::hasSharedTableNameChanges |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Detects whether any table name got renamed in an entity type update. |
SqlContentEntityStorageSchema::hasSharedTableStructureChange |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Detects whether there is a change in the shared table structure. |
SqlContentEntityStorageSchema::initializeBaseTable |
function |
core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php |
Initializes common information for a base table. |