You are here

public function NoneKeyInput::processExistingKeyValue in Key 8

Process an existing key value.

Parameters

string $key_value: The existing key value.

Return value

string The processed key value.

Overrides KeyInputBase::processExistingKeyValue

File

src/Plugin/KeyInput/NoneKeyInput.php, line 42

Class

NoneKeyInput
Defines a key input for providers that don't accept a value.

Namespace

Drupal\key\Plugin\KeyInput

Code

public function processExistingKeyValue($key_value) {
  return $key_value;
}