EntityTestForm.php in Drupal 10
File
core/modules/system/tests/modules/entity_test/src/EntityTestForm.php
View source
<?php
namespace Drupal\entity_test;
use Drupal\Component\Utility\Random;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;
class EntityTestForm extends ContentEntityForm {
protected function prepareEntity() {
if (empty($this->entity->name->value)) {
$random = new Random();
$this->entity->name->value = $random
->name();
}
}
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$entity = $this->entity;
if ($entity
->getEntityType()
->hasKey('revision') && !$entity
->isNew()) {
$form['revision'] = [
'#type' => 'checkbox',
'#title' => t('Create new revision'),
'#default_value' => $entity
->isNewRevision(),
];
}
return $form;
}
public function save(array $form, FormStateInterface $form_state) {
try {
$entity = $this->entity;
if (!$form_state
->isValueEmpty('revision')) {
$entity
->setNewRevision();
}
$is_new = $entity
->isNew();
$entity
->save();
if ($is_new) {
$message = t('%entity_type @id has been created.', [
'@id' => $entity
->id(),
'%entity_type' => $entity
->getEntityTypeId(),
]);
}
else {
$message = t('%entity_type @id has been updated.', [
'@id' => $entity
->id(),
'%entity_type' => $entity
->getEntityTypeId(),
]);
}
$this
->messenger()
->addStatus($message);
if ($entity
->id()) {
$entity_type = $entity
->getEntityTypeId();
$form_state
->setRedirect("entity.{$entity_type}.edit_form", [
$entity_type => $entity
->id(),
]);
}
else {
$this
->messenger()
->addError($this
->t('The entity could not be saved.'));
$form_state
->setRebuild();
}
} catch (\Exception $e) {
\Drupal::state()
->set('entity_test.form.save.exception', get_class($e) . ': ' . $e
->getMessage());
}
}
}