public functionisEmpty() {
$value = $this->get('value')
->getValue();
// Take into account that the name of the anonymous user is an empty string.if ($this->getEntity()
->isAnonymous()) {
return$value === NULL;
}
return$value === NULL || $value === '';
}