public function MappedObjectForm::save in Salesforce Suite 5.0.x
Same name and namespace in other branches
- 8.4 modules/salesforce_mapping_ui/src/Form/MappedObjectForm.php \Drupal\salesforce_mapping_ui\Form\MappedObjectForm::save()
Form submission handler for the 'save' action.
Normally this method should be overridden to provide specific messages to the user and redirect the form after the entity has been saved.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
int Either SAVED_NEW or SAVED_UPDATED, depending on the operation performed.
Overrides EntityForm::save
File
- modules/
salesforce_mapping_ui/ src/ Form/ MappedObjectForm.php, line 256
Class
- MappedObjectForm
- Salesforce Mapping Form base.
Namespace
Drupal\salesforce_mapping_ui\FormCode
public function save(array $form, FormStateInterface $form_state) {
$this
->getEntity()
->save();
$this
->messenger()
->addStatus($this
->t('The mapping has been successfully saved.'));
$form_state
->setRedirect('entity.salesforce_mapped_object.canonical', [
'salesforce_mapped_object' => $this
->getEntity()
->id(),
]);
}