public function EncryptionProfile::getEncryptionKeyId in Encrypt 8.3
Gets the ID of the Key entity.
Return value
string The ID of the selected Key entity.
Overrides EncryptionProfileInterface::getEncryptionKeyId
2 calls to EncryptionProfile::getEncryptionKeyId()
- EncryptionProfile::getEncryptionKey in src/
Entity/ EncryptionProfile.php - Gets the Key entity used in the encryption profile.
- EncryptionProfile::validate in src/
Entity/ EncryptionProfile.php - Validate the EncryptionProfile entity.
File
- src/
Entity/ EncryptionProfile.php, line 178
Class
- EncryptionProfile
- Defines the EncryptionProfile entity.
Namespace
Drupal\encrypt\EntityCode
public function getEncryptionKeyId() {
return $this->encryption_key;
}