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
Select::union function core/lib/Drupal/Core/Database/Query/Select.php Add another Select query to UNION to this one.
Select::valueCallback function core/lib/Drupal/Core/Render/Element/Select.php Determines how user input is mapped to an element's #value property.
Select::__clone function core/lib/Drupal/Core/Database/Query/Select.php Implements the magic __clone function.
Select::__construct function core/lib/Drupal/Core/Database/Query/Select.php Constructs a Select object.
Select::__toString function core/lib/Drupal/Core/Database/Query/Select.php Implements PHP magic __toString method to convert the query to a string.
selectable.css file core/assets/vendor/jquery.ui/themes/base/selectable.css /*!
* jQuery UI Selectable 1.12.1
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*/
.ui-selectable {
-ms-touch-action: none;
touch-action:…
SelectCloneTest class core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php Tests cloning Select queries.
SelectCloneTest.php file core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php
SelectCloneTest::testNestedQueryCloning function core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php Tests that nested SELECT queries are cloned properly.
SelectCloneTest::testSelectConditionSubQueryCloning function core/tests/Drupal/KernelTests/Core/Database/SelectCloneTest.php Test that subqueries as value within conditions are cloned properly.
SelectComplexTest class core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests the Select query builder with more complex queries.
SelectComplexTest.php file core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php
SelectComplexTest::$modules property core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Modules to enable.
SelectComplexTest::testCountQuery function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that we can generate a count query from a built query.
SelectComplexTest::testCountQueryDistinct function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that we can generate a count query from a query with distinct.
SelectComplexTest::testCountQueryFieldRemovals function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that countQuery properly removes fields and expressions.
SelectComplexTest::testCountQueryGroupBy function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that we can generate a count query from a query with GROUP BY.
SelectComplexTest::testCountQueryRemovals function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that countQuery removes 'all_fields' statements and ordering clauses.
SelectComplexTest::testDefaultJoin function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests simple JOIN statements.
SelectComplexTest::testDistinct function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests distinct queries.
SelectComplexTest::testGroupBy function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests GROUP BY clauses.
SelectComplexTest::testGroupByAndHaving function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests GROUP BY and HAVING clauses together.
SelectComplexTest::testHavingCountQuery function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests having queries.
SelectComplexTest::testJoinConditionObject function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Test that join conditions can use Condition objects.
SelectComplexTest::testJoinSubquery function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that we can join on a query.
SelectComplexTest::testJoinTwice function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Confirms we can join on a single table twice with a dynamic alias.
SelectComplexTest::testLeftOuterJoin function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests LEFT OUTER joins.
SelectComplexTest::testNestedConditions function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Confirms that we can properly nest conditional clauses.
SelectComplexTest::testRange function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests range queries.
SelectComplexTest::testRangeUndo function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Test whether the range property of a select clause can be undone.
SelectComplexTest::testSelectWithRowCount function core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php Tests that rowCount() throws exception on SELECT query.
SelectExtender class core/lib/Drupal/Core/Database/Query/SelectExtender.php The base extender class for Select queries.
SelectExtender.php file core/lib/Drupal/Core/Database/Query/SelectExtender.php
SelectExtender::$connection property core/lib/Drupal/Core/Database/Query/SelectExtender.php The connection object on which to run this query.
SelectExtender::$placeholder property core/lib/Drupal/Core/Database/Query/SelectExtender.php The placeholder counter.
SelectExtender::$query property core/lib/Drupal/Core/Database/Query/SelectExtender.php The Select query object we are extending/decorating.
SelectExtender::$uniqueIdentifier property core/lib/Drupal/Core/Database/Query/SelectExtender.php A unique identifier for this query object.
SelectExtender::addExpression function core/lib/Drupal/Core/Database/Query/SelectExtender.php Adds an expression to the list of "fields" to be SELECTed.
SelectExtender::addField function core/lib/Drupal/Core/Database/Query/SelectExtender.php Adds a field to the list to be SELECTed.
SelectExtender::addJoin function core/lib/Drupal/Core/Database/Query/SelectExtender.php Join against another table in the database.
SelectExtender::addMetaData function core/lib/Drupal/Core/Database/Query/SelectExtender.php Adds additional metadata to the query.
SelectExtender::addTag function core/lib/Drupal/Core/Database/Query/SelectExtender.php Adds a tag to a query.
SelectExtender::alwaysFalse function core/lib/Drupal/Core/Database/Query/SelectExtender.php Sets a condition that is always false.
SelectExtender::andConditionGroup function core/lib/Drupal/Core/Database/Query/SelectExtender.php Creates a new group of conditions ANDed together.
SelectExtender::arguments function core/lib/Drupal/Core/Database/Query/SelectExtender.php Gets a complete list of all values to insert into the prepared statement.
SelectExtender::compile function core/lib/Drupal/Core/Database/Query/SelectExtender.php Compiles the saved conditions for later retrieval.
SelectExtender::compiled function core/lib/Drupal/Core/Database/Query/SelectExtender.php Check whether a condition has been previously compiled.
SelectExtender::condition function core/lib/Drupal/Core/Database/Query/SelectExtender.php Helper function: builds the most common conditional clauses.
SelectExtender::conditionGroupFactory function core/lib/Drupal/Core/Database/Query/SelectExtender.php Creates an object holding a group of conditions.
SelectExtender::conditions function core/lib/Drupal/Core/Database/Query/SelectExtender.php Gets the, possibly nested, list of conditions in this conditional clause.

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