You are here

public function TeamMembersSelection::getConfiguration in Apigee Edge 8

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides SelectionPluginBase::getConfiguration

2 calls to TeamMembersSelection::getConfiguration()
TeamMembersSelection::buildConfigurationForm in modules/apigee_edge_teams/src/Plugin/EntityReferenceSelection/TeamMembersSelection.php
Form constructor.
TeamMembersSelection::buildEntityQuery in modules/apigee_edge_teams/src/Plugin/EntityReferenceSelection/TeamMembersSelection.php
Builds an EntityQuery to get referenceable entities.

File

modules/apigee_edge_teams/src/Plugin/EntityReferenceSelection/TeamMembersSelection.php, line 134

Class

TeamMembersSelection
Provides a team member entity selection plugin.

Namespace

Drupal\apigee_edge_teams\Plugin\EntityReferenceSelection

Code

public function getConfiguration() {
  $conf = parent::getConfiguration();

  // Anonymous user should never be displayed because it can not be assigned
  // to a team as member.
  $conf['include_anonymous'] = FALSE;
  return $conf;
}