You are here

public function Key::deleteKeyValue in Key 8

File

src/Entity/Key.php, line 304

Class

Key
Defines the Key entity.

Namespace

Drupal\key\Entity

Code

public function deleteKeyValue() {
  if ($this
    ->getKeyProvider() instanceof KeyProviderSettableValueInterface) {
    return $this
      ->getKeyProvider()
      ->deleteKeyValue($this);
  }
  else {
    return FALSE;
  }
}