public function ProfileOwner::__construct in Profile 8
Constructs a new Product instance.
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.
\Drupal\Core\Routing\RouteMatchInterface $route_match: The route match.
Overrides PluginBase::__construct
File
- src/
Plugin/ views/ argument_default/ ProfileOwner.php, line 41
Class
- ProfileOwner
- Default argument plugin to extract a user from a profile.
Namespace
Drupal\profile\Plugin\views\argument_defaultCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteMatchInterface $route_match) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->routeMatch = $route_match;
}