ConsentAgreementStorage.php in General Data Protection Regulation 3.0.x
File
modules/gdpr_consent/src/ConsentAgreementStorage.php
View source
<?php
namespace Drupal\gdpr_consent;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Language\LanguageInterface;
use Drupal\gdpr_consent\Entity\ConsentAgreementInterface;
class ConsentAgreementStorage extends SqlContentEntityStorage implements ConsentAgreementStorageInterface {
public function revisionIds(ConsentAgreementInterface $entity) {
return $this->database
->query('SELECT revision_id FROM {gdpr_consent_agreement_revision} WHERE id=:id ORDER BY revision_id', [
':id' => $entity
->id(),
])
->fetchCol();
}
public function userRevisionIds(AccountInterface $account) {
return $this->database
->query('SELECT revision_id FROM {gdpr_consent_agreement_field_revision} WHERE uid = :uid ORDER BY revision_id', [
':uid' => $account
->id(),
])
->fetchCol();
}
public function countDefaultLanguageRevisions(ConsentAgreementInterface $entity) {
return $this->database
->query('SELECT COUNT(*) FROM {gdpr_consent_agreement_field_revision} WHERE id = :id AND default_langcode = 1', [
':id' => $entity
->id(),
])
->fetchField();
}
public function clearRevisionsLanguage(LanguageInterface $language) {
return $this->database
->update('gdpr_consent_agreement_revision')
->fields([
'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
])
->condition('langcode', $language
->getId())
->execute();
}
}