learnosity-1.0.x-dev/src/LearnosityActivityStorageInterface.php
src/LearnosityActivityStorageInterface.php
<?php
namespace Drupal\learnosity;
use Drupal\Core\Entity\ContentEntityStorageInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Language\LanguageInterface;
use Drupal\learnosity\Entity\LearnosityActivityInterface;
/**
* Defines the storage handler class for Activity entities.
*
* This extends the base storage class, adding required special handling for
* Activity entities.
*
* @ingroup learnosity
*/
interface LearnosityActivityStorageInterface extends ContentEntityStorageInterface {
/**
* Gets a list of Activity revision IDs for a specific Activity.
*
* @param \Drupal\learnosity\Entity\LearnosityActivityInterface $entity
* The Activity entity.
*
* @return int[]
* Activity revision IDs (in ascending order).
*/
public function revisionIds(LearnosityActivityInterface $entity);
/**
* Gets a list of revision IDs having a given user as Activity author.
*
* @param \Drupal\Core\Session\AccountInterface $account
* The user entity.
*
* @return int[]
* Activity revision IDs (in ascending order).
*/
public function userRevisionIds(AccountInterface $account);
/**
* Counts the number of revisions in the default language.
*
* @param \Drupal\learnosity\Entity\LearnosityActivityInterface $entity
* The Activity entity.
*
* @return int
* The number of revisions in the default language.
*/
public function countDefaultLanguageRevisions(LearnosityActivityInterface $entity);
/**
* Unsets the language for all Activity with the given language.
*
* @param \Drupal\Core\Language\LanguageInterface $language
* The language object.
*/
public function clearRevisionsLanguage(LanguageInterface $language);
}
