You are here

public function WebformContentCreatorEntity::getEncryptionProfile in Webform Content Creator 3.x

Same name and namespace in other branches
  1. 8 src/Entity/WebformContentCreatorEntity.php \Drupal\webform_content_creator\Entity\WebformContentCreatorEntity::getEncryptionProfile()
  2. 2.x src/Entity/WebformContentCreatorEntity.php \Drupal\webform_content_creator\Entity\WebformContentCreatorEntity::getEncryptionProfile()

Returns the encryption profile.

Return value

string The encryption profile name.

Overrides WebformContentCreatorInterface::getEncryptionProfile

1 call to WebformContentCreatorEntity::getEncryptionProfile()
WebformContentCreatorEntity::getProfileName in src/Entity/WebformContentCreatorEntity.php
Get encryption profile name.

File

src/Entity/WebformContentCreatorEntity.php, line 249

Class

WebformContentCreatorEntity
Defines the Webform Content creator entity.

Namespace

Drupal\webform_content_creator\Entity

Code

public function getEncryptionProfile() {
  return $this
    ->get(WebformContentCreatorInterface::ENCRYPTION_PROFILE);
}