Search for %s

  1. Search 7.x for %s
  2. Search 9.5.x for %s
  3. Search 10.3.x for %s
  4. Search 11.x for %s
  5. Search main for %s
  6. Other projects
Title Object type File name Summary
Sql::$eventDispatcher property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php An event dispatcher instance to use for map events.
Sql::$fieldAliases property core/modules/views/src/Plugin/views/query/Sql.php An array mapping table aliases and field names to field aliases.
Sql::$fields property core/modules/views/src/Plugin/views/query/Sql.php An array of fields.
Sql::$getCountOptimized property core/modules/views/src/Plugin/views/query/Sql.php Should this query be optimized for counts, for example no sorts.
Sql::$groupby property core/modules/views/src/Plugin/views/query/Sql.php A simple array of group by clauses.
Sql::$groupOperator property core/modules/views/src/Plugin/views/query/Sql.php The default operator to use when connecting the WHERE groups. May be
AND or OR.
Sql::$hasAggregate property core/modules/views/src/Plugin/views/query/Sql.php
Sql::$having property core/modules/views/src/Plugin/views/query/Sql.php An array of sections of the HAVING query. Each section is in itself
an array of pieces and a flag as to whether or not it should be AND
or OR.
Sql::$initialized property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php Whether the plugin is already initialized.
Sql::$mapTableName property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The migration map table name.
Sql::$message property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The migrate message service.
Sql::$messageTableName property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The message table name.
Sql::$messenger property core/modules/views/src/Plugin/views/query/Sql.php The messenger.
Sql::$migration property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The migration being done.
Sql::$noDistinct property core/modules/views/src/Plugin/views/query/Sql.php Is the view marked as not distinct.
Sql::$orderby property core/modules/views/src/Plugin/views/query/Sql.php A simple array of order by clauses.
Sql::$query property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The select query.
Sql::$relationships property core/modules/views/src/Plugin/views/query/Sql.php Holds an array of relationships, which are aliases of the primary
table that represent different ways to join the same table in.
Sql::$result property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The result.
Sql::$sourceIdFields property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The source ID fields.
Sql::$sourceIds property core/modules/migrate/src/Plugin/migrate/id_map/Sql.php The source identifiers.
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::$tags property core/modules/views/src/Plugin/views/query/Sql.php Query tags which will be passed over to the dbtng query object.
Sql::$where property core/modules/views/src/Plugin/views/query/Sql.php An array of sections of the WHERE query. Each section is in itself
an array of pieces and a flag as to whether or not it should be AND
or OR.
Sql::addField function core/modules/views/src/Plugin/views/query/Sql.php Add a field to the query table, possibly with an alias. This will
automatically call ensureTable to make sure the required table
exists, *unless* $table is unset.
Sql::addGroupBy function core/modules/views/src/Plugin/views/query/Sql.php Add a simple GROUP BY clause to the query. The caller is responsible
for ensuring that the fields are fully qualified and the table is properly
added.
Sql::addHavingExpression function core/modules/views/src/Plugin/views/query/Sql.php Add a complex HAVING clause to the query.
The caller is responsible for ensuring that all fields are fully qualified
(TABLE.FIELD) and that the table and an appropriate GROUP BY already exist in the query.
Internally the dbtng method…
Sql::addOrderBy function core/modules/views/src/Plugin/views/query/Sql.php Add an ORDER BY clause to the query.
Sql::addRelationship function core/modules/views/src/Plugin/views/query/Sql.php A relationship is an alternative endpoint to a series of table
joins. Relationships must be aliases of the primary table and
they must join either to the primary table or to a pre-existing
relationship.
Sql::addSignature function core/modules/views/src/Plugin/views/query/Sql.php Add a signature to the query, if such a thing is feasible.
Sql::addTable function core/modules/views/src/Plugin/views/query/Sql.php Add a table to the query, ensuring the path exists.
Sql::addTag function core/modules/views/src/Plugin/views/query/Sql.php Adds a query tag to the sql object.
Sql::addWhere function core/modules/views/src/Plugin/views/query/Sql.php Add a simple WHERE clause to the query. The caller is responsible for
ensuring that all fields are fully qualified (TABLE.FIELD) and that
the table already exists in the query.
Sql::addWhereExpression function core/modules/views/src/Plugin/views/query/Sql.php Add a complex WHERE clause to the query.
Sql::adjustJoin function core/modules/views/src/Plugin/views/query/Sql.php Fix a join to adhere to the proper relationship; the left table can vary
based upon what relationship items are joined in on.
Sql::aggregationMethodDistinct function core/modules/views/src/Plugin/views/query/Sql.php
Sql::aggregationMethodSimple function core/modules/views/src/Plugin/views/query/Sql.php
Sql::alter function core/modules/views/src/Plugin/views/query/Sql.php Let modules modify the query just prior to finalizing it.
Sql::assignEntitiesToResult function core/modules/views/src/Plugin/views/query/Sql.php Sets entities onto the view result row objects.
Sql::build function core/modules/views/src/Plugin/views/query/Sql.php Builds the necessary info to execute the query.
Sql::buildCondition function core/modules/views/src/Plugin/views/query/Sql.php Construct the "WHERE" or "HAVING" part of the query.
Sql::buildOptionsForm function core/modules/views/src/Plugin/views/query/Sql.php Add settings for the ui.
Sql::clearFields function core/modules/views/src/Plugin/views/query/Sql.php Remove all fields that may've been added; primarily used for summary
mode where we're changing the query because we didn't get data we needed.
Sql::clearMessages function core/modules/migrate/src/Plugin/migrate/id_map/Sql.php Clears all messages from the map.
Sql::compileFields function core/modules/views/src/Plugin/views/query/Sql.php Adds fields to the query.
Sql::countHelper function core/modules/migrate/src/Plugin/migrate/id_map/Sql.php Counts records in a table.
Sql::create function core/modules/migrate/src/Plugin/migrate/id_map/Sql.php Creates an instance of the plugin.
Sql::create function core/modules/views/src/Plugin/views/query/Sql.php Creates an instance of the plugin.
Sql::current function core/modules/migrate/src/Plugin/migrate/id_map/Sql.php Implementation of \Iterator::current().

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