You are here

public function SalesforceAuthProviderPluginBase::getPluginDefinition in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 src/SalesforceAuthProviderPluginBase.php \Drupal\salesforce\SalesforceAuthProviderPluginBase::getPluginDefinition()
  2. 8.3 src/SalesforceAuthProviderPluginBase.php \Drupal\salesforce\SalesforceAuthProviderPluginBase::getPluginDefinition()

Gets the definition of the plugin implementation.

Return value

array The plugin definition, as returned by the discovery object used by the plugin manager.

Overrides PluginInspectionInterface::getPluginDefinition

2 calls to SalesforceAuthProviderPluginBase::getPluginDefinition()
SalesforceAuthProviderPluginBase::getCredentials in src/SalesforceAuthProviderPluginBase.php
Return the credentials configured for this auth provider instance.
SalesforceJWTPlugin::getPluginDefinition in modules/salesforce_jwt/src/Plugin/SalesforceAuthProvider/SalesforceJWTPlugin.php
Gets the definition of the plugin implementation.
1 method overrides SalesforceAuthProviderPluginBase::getPluginDefinition()
SalesforceJWTPlugin::getPluginDefinition in modules/salesforce_jwt/src/Plugin/SalesforceAuthProvider/SalesforceJWTPlugin.php
Gets the definition of the plugin implementation.

File

src/SalesforceAuthProviderPluginBase.php, line 137

Class

SalesforceAuthProviderPluginBase
Shared methods for auth providers.

Namespace

Drupal\salesforce

Code

public function getPluginDefinition() {
  return $this->pluginDefinition;
}