You are here

public function EncryptionMethodBase::getLabel in Encrypt 8.3

Get the label.

Return value

string The label for this EncryptionMethod plugin.

Overrides EncryptionMethodInterface::getLabel

File

src/Plugin/EncryptionMethod/EncryptionMethodBase.php, line 40

Class

EncryptionMethodBase
Provides a base class for EncryptionMethod plugins.

Namespace

Drupal\encrypt\Plugin\EncryptionMethod

Code

public function getLabel() {
  return $this->pluginDefinition['title'];
}