You are here

public function OpenIDConnectClientBase::__construct in OpenID Connect / OAuth client 7

Constructs a new OpenIDConnectClientBase.

Parameters

string $name: The machine name of the client plugin.

string $label: The human-readable name of the client plugin.

array $settings: Admin-provided configuration.

File

includes/OpenIDConnectClientBase.class.php, line 44
Base class for OpenID Connect clients.

Class

OpenIDConnectClientBase
Base class for OpenID Connect clients.

Code

public function __construct($name, $label, array $settings) {
  $this->name = $name;
  $this->label = $label;
  $this->settings = $settings;
}