public function TableConfigForm::save in Data 8
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
- src/
Form/ TableConfigForm.php, line 118
Class
- TableConfigForm
- Class TableConfigForm.
Namespace
Drupal\data\FormCode
public function save(array $form, FormStateInterface $form_state) {
// No need to save entity at the first step.
if (!$this->step) {
return;
}
$data_table_config = $this->entity;
try {
$status = $data_table_config
->save();
} catch (\Exception $e) {
$this->messenger
->addError($e
->getMessage(), 'error');
return;
}
switch ($status) {
case SAVED_NEW:
$this->messenger
->addMessage($this
->t('Created the %label Data Table.', [
'%label' => $data_table_config
->label(),
]));
break;
default:
$this->messenger
->addMessage($this
->t('Saved the %label Data Table.', [
'%label' => $data_table_config
->label(),
]));
}
$form_state
->setRedirectUrl($data_table_config->EntityInterface::toUrl()('collection'));
}