You are here

public function EncryptionProfile::getEncryptionMethodId in Encrypt 8.3

Gets the plugin ID of the encryption method.

Return value

string The plugin ID of the selected EncryptionMethod plugin.

Overrides EncryptionProfileInterface::getEncryptionMethodId

2 calls to EncryptionProfile::getEncryptionMethodId()
EncryptionProfile::getEncryptionMethod in src/Entity/EncryptionProfile.php
Gets the encryption method configuration plugin.
EncryptionProfile::validate in src/Entity/EncryptionProfile.php
Validate the EncryptionProfile entity.

File

src/Entity/EncryptionProfile.php, line 153

Class

EncryptionProfile
Defines the EncryptionProfile entity.

Namespace

Drupal\encrypt\Entity

Code

public function getEncryptionMethodId() {
  return $this->encryption_method;
}