You are here

public function ProfileViewsRelationship::__construct in Profile 8

Constructs a ProfileViewsRelationship object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides HandlerBase::__construct

File

src/Plugin/views/relationship/ProfileViewsRelationship.php, line 27

Class

ProfileViewsRelationship
Provides a views relationship to select profile content by a profile_type.

Namespace

Drupal\profile\Plugin\views\relationship

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->definition = $plugin_definition + $configuration;
}