This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_cases/src/OCActorCaseRelationStorage.php

59 lines
1.7 KiB
PHP

<?php
namespace Drupal\opencase_cases;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Language\LanguageInterface;
use Drupal\opencase_cases\Entity\OCActorCaseRelationInterface;
/**
* Defines the storage handler class for Actor-Case Relation entities.
*
* This extends the base storage class, adding required special handling for
* Actor-Case Relation entities.
*
* @ingroup opencase_cases
*/
class OCActorCaseRelationStorage extends SqlContentEntityStorage implements OCActorCaseRelationStorageInterface {
/**
* {@inheritdoc}
*/
public function revisionIds(OCActorCaseRelationInterface $entity) {
return $this->database->query(
'SELECT vid FROM {oc_actor_case_relation_revision} WHERE id=:id ORDER BY vid',
[':id' => $entity->id()]
)->fetchCol();
}
/**
* {@inheritdoc}
*/
public function userRevisionIds(AccountInterface $account) {
return $this->database->query(
'SELECT vid FROM {oc_actor_case_relation_field_revision} WHERE uid = :uid ORDER BY vid',
[':uid' => $account->id()]
)->fetchCol();
}
/**
* {@inheritdoc}
*/
public function countDefaultLanguageRevisions(OCActorCaseRelationInterface $entity) {
return $this->database->query('SELECT COUNT(*) FROM {oc_actor_case_relation_field_revision} WHERE id = :id AND default_langcode = 1', [':id' => $entity->id()])
->fetchField();
}
/**
* {@inheritdoc}
*/
public function clearRevisionsLanguage(LanguageInterface $language) {
return $this->database->update('oc_actor_case_relation_revision')
->fields(['langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED])
->condition('langcode', $language->getId())
->execute();
}
}