public function QueryTrait::prepare in Multiversion 8.2
Same name and namespace in other branches
- 8 src/Entity/Query/QueryTrait.php \Drupal\multiversion\Entity\Query\QueryTrait::prepare()
1 call to QueryTrait::prepare()
- Query::prepare in src/Entity/Query/Sql/Query.php
- Prepares the basic query with proper metadata/tags and base fields.
File
- src/Entity/Query/QueryTrait.php, line 51
Class
- QueryTrait
- @property $entityTypeId
@property $entityTypeManager
@property $condition
Namespace
Drupal\multiversion\Entity\Query
Code
public function prepare() {
parent::prepare();
$entity_type = $this->entityTypeManager
->getDefinition($this->entityTypeId);
$enabled = $this->multiversionManager
->isEnabledEntityType($entity_type);
if (is_subclass_of($entity_type
->getStorageClass(), ContentEntityStorageInterface::class) && $enabled) {
$revision_key = $entity_type
->getKey('revision');
$revision_query = FALSE;
foreach ($this->condition
->conditions() as $condition) {
if ($condition['field'] == $revision_key) {
$revision_query = TRUE;
}
}
$workspace = Workspace::load($this
->getWorkspaceId());
if (!$workspace
->isDefaultWorkspace()) {
$this->sqlQuery
->addMetaData('active_workspace_id', $workspace
->id());
$this->sqlQuery
->addMetaData('simple_query', FALSE);
$id_key = $entity_type
->getKey('id');
$workspace_association_table = 'workspace_association';
$this->sqlQuery
->leftJoin($workspace_association_table, $workspace_association_table, "%alias.target_entity_type_id = '{$this->entityTypeId}' AND %alias.target_entity_id = base_table.{$id_key}");
$this->sqlQuery
->condition($this->sqlQuery
->orConditionGroup()
->condition("{$workspace_association_table}.workspace", $workspace
->id())
->condition("{$workspace_association_table}.workspace", NULL, 'IS'));
}
if (!$revision_query) {
$this
->condition('_deleted', (int) $this->isDeleted);
}
}
return $this;
}