function ContactForm::save

Overrides EntityForm::save

File

modules/content_entity_example/src/Form/ContactForm.php, line 36

Class

ContactForm
Form controller for the content_entity_example entity edit forms.

Namespace

Drupal\content_entity_example\Form

Code

public function save(array $form, FormStateInterface $form_state) {
  $form_state->setRedirect('entity.content_entity_example_contact.collection');
  $entity = $this->getEntity();
  $entity->save();
}