UserSelection.php in Open Social 8.8
Same filename and directory in other branches
- 8.9 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 8.2 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 8.3 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 8.4 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 8.5 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 8.6 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 8.7 modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 10.3.x modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 10.0.x modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 10.1.x modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
- 10.2.x modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.php
File
modules/social_features/social_profile/src/Plugin/EntityReferenceSelection/UserSelection.phpView source
<?php
namespace Drupal\social_profile\Plugin\EntityReferenceSelection;
use Drupal\social_profile\SocialProfileTrait;
use Drupal\user\Plugin\EntityReferenceSelection\UserSelection as UserSelectionBase;
/**
* Provides specific access control for the user entity type.
*
* @EntityReferenceSelection(
* id = "social:user",
* label = @Translation("Social user selection"),
* entity_types = {"user"},
* group = "social",
* weight = 1
* )
*/
class UserSelection extends UserSelectionBase {
use SocialProfileTrait;
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
$configuration = parent::defaultConfiguration();
$configuration['include_anonymous'] = FALSE;
return $configuration;
}
/**
* {@inheritdoc}
*/
public function validateReferenceableEntities(array $ids) {
$result = [];
if ($ids) {
$target_type = $this->configuration['target_type'];
$entity_type = $this->entityTypeManager
->getDefinition($target_type);
$query = $this
->buildEntityQuery(NULL, 'CONTAINS', $ids);
$result = $query
->condition($entity_type
->getKey('id'), $ids, 'IN')
->execute();
}
return $result;
}
/**
* Builds an EntityQuery to get referenceable entities.
*
* @param string|null $match
* (Optional) Text to match the label against. Defaults to NULL.
* @param string $match_operator
* (Optional) The operation the matching should be done with. Defaults
* to "CONTAINS".
* @param array $ids
* (Optional) $ids that are coming from an earlier request.
*
* @return \Drupal\Core\Entity\Query\QueryInterface
* The EntityQuery object with the basic conditions and sorting applied to
* it.
*/
protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS', array $ids = []) {
// If an earlier request already had the ids don't query them again.
if (empty($ids)) {
$config_factory = \Drupal::service('config.factory');
$config = $config_factory
->get('mentions.settings');
$suggestion_format = $config
->get('suggestions_format');
$suggestion_amount = $config
->get('suggestions_amount');
$ids = $this
->getUserIdsFromName($match, $suggestion_amount, $suggestion_format);
}
if (empty($ids)) {
return parent::buildEntityQuery($match, $match_operator);
}
$query = parent::buildEntityQuery(NULL, $match_operator);
$query
->condition('uid', $ids, 'IN');
return $query;
}
}
Classes
Name | Description |
---|---|
UserSelection | Provides specific access control for the user entity type. |