You are here

interface EntityQueueRepositoryInterface in Entityqueue 8

Interface EntityQueueRepositoryInterface.

Hierarchy

Expanded class hierarchy of EntityQueueRepositoryInterface

All classes that implement EntityQueueRepositoryInterface

1 file declares its use of EntityQueueRepositoryInterface
EntityQueueUIController.php in src/Controller/EntityQueueUIController.php

File

src/EntityQueueRepositoryInterface.php, line 10

Namespace

Drupal\entityqueue
View source
interface EntityQueueRepositoryInterface {

  /**
   * Gets a list of queues which can hold this entity.
   *
   * @param \Drupal\Core\Entity\EntityInterface $entity
   *   An entity object.
   *
   * @return \Drupal\entityqueue\EntityQueueInterface[]
   *   An array of entity queues which can hold this entity.
   */
  public function getAvailableQueuesForEntity(EntityInterface $entity);

}

Members

Namesort descending Modifiers Type Description Overrides
EntityQueueRepositoryInterface::getAvailableQueuesForEntity public function Gets a list of queues which can hold this entity. 1