Skip to content
Snippets Groups Projects
Commit 6ba9a500 authored by catch's avatar catch
Browse files

Issue #2208611 by tim.plunkett: Allow subclasses of...

Issue #2208611 by tim.plunkett: Allow subclasses of \Drupal\Core\Entity\Query\QueryBase to override getClass().
parent 6b0b4cfc
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -210,9 +210,7 @@ public function range($start = NULL, $length = NULL) {
* An object holding a group of conditions.
*/
protected function conditionGroupFactory($conjunction = 'AND') {
// As the factory classes hardwire QueryBase::getClass, it needs to be
// hardwired here too.
$class = QueryBase::getClass($this->namespaces, 'Condition');
$class = static::getClass($this->namespaces, 'Condition');
return new $class($conjunction, $this, $this->namespaces);
}
......
......@@ -311,7 +311,7 @@ public function __clone() {
* The object that adds tables and fields to the SQL query object.
*/
public function getTables(SelectInterface $sql_query) {
$class = QueryBase::getClass($this->namespaces, 'Tables');
$class = static::getClass($this->namespaces, 'Tables');
return new $class($sql_query);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment