cloud-8.x-2.0-beta1/src/Entity/CloudServerTemplateStorage.php
src/Entity/CloudServerTemplateStorage.php
<?php
namespace Drupal\cloud\Entity;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Language\LanguageInterface;
/**
* Defines the storage handler class for cloud server template entities.
*
* This extends the base storage class, adding required special handling for
* Cloud server template entities.
*
* @ingroup cloud_server_template
*/
class CloudServerTemplateStorage extends SqlContentEntityStorage implements CloudServerTemplateStorageInterface {
/**
* {@inheritdoc}
*/
public function revisionIds(CloudServerTemplateInterface $entity) {
return $this->database->query(
'SELECT vid FROM {cloud_server_template_revision} WHERE id=:id ORDER BY vid',
[':id' => $entity->id()]
)->fetchCol();
}
/**
* {@inheritdoc}
*/
public function userRevisionIds(AccountInterface $account) {
return $this->database->query(
'SELECT vid FROM {cloud_server_template_field_revision} WHERE uid = :uid ORDER BY vid',
[':uid' => $account->id()]
)->fetchCol();
}
/**
* {@inheritdoc}
*/
public function countDefaultLanguageRevisions(CloudServerTemplateInterface $entity) {
return $this->database->query('SELECT COUNT(*) FROM {cloud_server_template_field_revision} WHERE id = :id AND default_langcode = 1', [':id' => $entity->id()])
->fetchField();
}
/**
* {@inheritdoc}
*/
public function clearRevisionsLanguage(LanguageInterface $language) {
return $this->database->update('cloud_server_template_revision')
->fields(['langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED])
->condition('langcode', $language->getId())
->execute();
}
}
