Made Actor, Activity and Case entities

This commit is contained in:
naomi
2018-04-29 13:58:46 +02:00
parent 398a6c71a3
commit 249003bf16
83 changed files with 5914 additions and 4 deletions

View File

@ -0,0 +1,58 @@
<?php
namespace Drupal\opencase_entities;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Language\LanguageInterface;
use Drupal\opencase_entities\Entity\OCActorInterface;
/**
* Defines the storage handler class for Actor entities.
*
* This extends the base storage class, adding required special handling for
* Actor entities.
*
* @ingroup opencase_entities
*/
class OCActorStorage extends SqlContentEntityStorage implements OCActorStorageInterface {
/**
* {@inheritdoc}
*/
public function revisionIds(OCActorInterface $entity) {
return $this->database->query(
'SELECT vid FROM {oc_actor_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_field_revision} WHERE uid = :uid ORDER BY vid',
[':uid' => $account->id()]
)->fetchCol();
}
/**
* {@inheritdoc}
*/
public function countDefaultLanguageRevisions(OCActorInterface $entity) {
return $this->database->query('SELECT COUNT(*) FROM {oc_actor_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_revision')
->fields(['langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED])
->condition('langcode', $language->getId())
->execute();
}
}