public function InformBlockForm::exist in Data Policy 8
Helper function to check whether an InformBlock entity exists.
File
- src/
Form/ InformBlockForm.php, line 129
Class
- InformBlockForm
- Form handler for the InformBlock add and edit forms.
Namespace
Drupal\data_policy\FormCode
public function exist($id) {
$entity = $this->entityTypeManager
->getStorage('informblock')
->getQuery()
->condition('id', $id)
->execute();
return (bool) $entity;
}