public function Key::deleteKeyValue in Key 8
File
- src/
Entity/ Key.php, line 304
Class
- Key
- Defines the Key entity.
Namespace
Drupal\key\EntityCode
public function deleteKeyValue() {
if ($this
->getKeyProvider() instanceof KeyProviderSettableValueInterface) {
return $this
->getKeyProvider()
->deleteKeyValue($this);
}
else {
return FALSE;
}
}