entityManager = $entity_manager; $this->state = $state; } /** * {@inheritdoc} */ public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) { return new static( $entity_type, $container->get('config.factory'), $container->get('config.storage'), $container->get('uuid'), $container->get('language_manager'), $container->get('entity.manager'), $container->get('state') ); } /** * {@inheritdoc} */ public function importDelete($name, Config $new_config, Config $old_config) { // If the field has been deleted in the same import, the instance will be // deleted by then, and there is nothing left to do. Just return TRUE so // that the file does not get written to active store. if (!$old_config->get()) { return TRUE; } return parent::importDelete($name, $new_config, $old_config); } /** * {@inheritdoc} */ public function loadByProperties(array $conditions = array()) { // Include deleted instances if specified in the $conditions parameters. $include_deleted = isset($conditions['include_deleted']) ? $conditions['include_deleted'] : FALSE; unset($conditions['include_deleted']); $instances = array(); // Get instances stored in configuration. If we are explicitly looking for // deleted instances only, this can be skipped, because they will be // retrieved from state below. if (empty($conditions['deleted'])) { if (isset($conditions['entity_type']) && isset($conditions['bundle']) && isset($conditions['field_name'])) { // Optimize for the most frequent case where we do have a specific ID. $id = $conditions['entity_type'] . '.' . $conditions['bundle'] . '.' . $conditions['field_name']; $instances = $this->loadMultiple(array($id)); } else { // No specific ID, we need to examine all existing instances. $instances = $this->loadMultiple(); } } // Merge deleted instances (stored in state) if needed. if ($include_deleted || !empty($conditions['deleted'])) { $deleted_instances = $this->state->get('field.instance.deleted') ?: array(); $deleted_storages = $this->state->get('field.storage.deleted') ?: array(); foreach ($deleted_instances as $id => $config) { // If the field itself is deleted, inject it directly in the instance. if (isset($deleted_storages[$config['field_storage_uuid']])) { $config['field_storage'] = $this->entityManager->getStorage('field_storage_config')->create($deleted_storages[$config['field_storage_uuid']]); } $instances[$id] = $this->create($config); } } // Collect matching instances. $matching_instances = array(); foreach ($instances as $instance) { // Some conditions are checked against the field. $field_storage = $instance->getFieldStorageDefinition(); // Only keep the instance if it matches all conditions. foreach ($conditions as $key => $value) { // Extract the actual value against which the condition is checked. switch ($key) { case 'field_name': $checked_value = $field_storage->name; break; case 'field_id': case 'field_storage_uuid': $checked_value = $field_storage->uuid(); break; case 'uuid'; $checked_value = $instance->uuid(); break; default: $checked_value = $instance->$key; break; } // Skip to the next instance as soon as one condition does not match. if ($checked_value != $value) { continue 2; } } // When returning deleted instances, key the results by UUID since they // can include several instances with the same ID. $key = $include_deleted ? $instance->uuid() : $instance->id(); $matching_instances[$key] = $instance; } return $matching_instances; } }