Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entityqueue / plugins / entityreference / selection / EntityReference_SelectionHandler_EntityQueue.class.php
diff --git a/web/modules/contrib/entityqueue/plugins/entityreference/selection/EntityReference_SelectionHandler_EntityQueue.class.php b/web/modules/contrib/entityqueue/plugins/entityreference/selection/EntityReference_SelectionHandler_EntityQueue.class.php
deleted file mode 100644 (file)
index 0269762..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-<?php
-
-/**
- * @file
- * Definition of EntityReference_SelectionHandler_EntityQueue.
- */
-
-/**
- * Defines a Entityreference selection handler for Entityqueue.
- */
-class EntityReference_SelectionHandler_EntityQueue extends EntityReference_SelectionHandler_Generic {
-
-  /**
-   * Overrides EntityReference_SelectionHandler_Generic::getInstance().
-   */
-  public static function getInstance($field, $instance = NULL, $entity_type = NULL, $entity = NULL) {
-    return new EntityReference_SelectionHandler_EntityQueue($field, $instance, $entity_type, $entity);
-  }
-
-  /**
-   * Constructs the EntityQueue selection handler.
-   */
-  protected function __construct($field, $instance = NULL, $entity_type = NULL, $entity = NULL) {
-    parent::__construct($field, $instance, $entity_type, $entity);
-
-    $queue_name = NULL;
-    if (!empty($entity->queue)) {
-      $queue_name = $entity->queue;
-    }
-    elseif (!empty($instance['bundle'])) {
-      $queue_name = $instance['bundle'];
-    }
-    if (!empty($queue_name)) {
-      $this->queue = entityqueue_queue_load($queue_name);
-    }
-
-    // Override the entityreference settings with our own.
-    $this->field['settings']['handler_settings']['target_bundles'] = NULL;
-  }
-
-  /**
-   * Overrides EntityReference_SelectionHandler_Generic::buildEntityFieldQuery().
-   */
-  public function buildEntityFieldQuery($match = NULL, $match_operator = 'CONTAINS') {
-    $handler = EntityReference_SelectionHandler_Generic::getInstance($this->field, $this->instance, $this->entity_type, $this->entity);
-    $query = $handler->buildEntityFieldQuery($match, $match_operator);
-
-    if (!empty($this->queue->settings['target_bundles'])) {
-      $query->entityCondition('bundle', $this->queue->settings['target_bundles'], 'IN');
-    }
-
-    return $query;
-  }
-
-  /**
-   * Implements EntityReferenceHandler::validateReferencableEntities().
-   */
-  public function validateReferencableEntities(array $ids) {
-    $referencable = parent::validateReferencableEntities($ids);
-    // Allow users to save the queue even if they don't have access to an
-    // existing entity in the queue. See https://www.drupal.org/node/2383903
-    $existing = $this->getCurrentlyReferencedEntityIds();
-
-    return array_unique(array_merge($referencable, $existing));
-  }
-
-  /**
-   * Gets ids of existing entities in the queue.
-   *
-   * @return array
-   *   Entity ids that are currently referenced by the entity.
-   */
-  public function getCurrentlyReferencedEntityIds() {
-    $ret = array();
-    if (isset($this->entity) && isset($this->field)) {
-      $entity_type = $this->entity_type;
-      $field_name = $this->field['field_name'];
-      $wrapper = entity_metadata_wrapper($entity_type, $this->entity);
-      $ret = $wrapper->{$field_name}->raw();
-    }
-
-    return $ret;
-  }
-
-}