public function EntityQueueForm::save in Entityqueue 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/ EntityQueueForm.php, line 403
Class
- EntityQueueForm
- Base form for entity queue edit forms.
Namespace
Drupal\entityqueue\FormCode
public function save(array $form, FormStateInterface $form_state) {
$queue = $this->entity;
$status = $queue
->save();
$edit_link = $queue
->toLink($this
->t('Edit'), 'edit-form')
->toString();
if ($status == SAVED_UPDATED) {
$this
->messenger()
->addMessage($this
->t('The entity queue %label has been updated.', [
'%label' => $queue
->label(),
]));
$this
->logger('entityqueue')
->notice('The entity queue %label has been updated.', [
'%label' => $queue
->label(),
'link' => $edit_link,
]);
}
else {
$this
->messenger()
->addMessage($this
->t('The entity queue %label has been added.', [
'%label' => $queue
->label(),
]));
$this
->logger('entityqueue')
->notice('The entity queue %label has been added.', [
'%label' => $queue
->label(),
'link' => $edit_link,
]);
}
$form_state
->setRedirectUrl($queue
->toUrl('collection'));
}