You are here

public function ImceProfileForm::save in IMCE 8.2

Same name and namespace in other branches
  1. 8 src/Form/ImceProfileForm.php \Drupal\imce\Form\ImceProfileForm::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

src/Form/ImceProfileForm.php, line 316

Class

ImceProfileForm
Base form for Imce Profile entities.

Namespace

Drupal\imce\Form

Code

public function save(array $form, FormStateInterface $form_state) {

  /**
   * @var \Drupal\imce\Entity\ImceProfile
   */
  $imce_profile = $this
    ->getEntity();
  $status = $imce_profile
    ->save();
  if ($status == SAVED_NEW) {
    $this
      ->messenger()
      ->addMessage($this
      ->t('Profile %name has been added.', [
      '%name' => $imce_profile
        ->label(),
    ]));
  }
  elseif ($status == SAVED_UPDATED) {
    $this
      ->messenger()
      ->addMessage($this
      ->t('The changes have been saved.'));
  }
  $form_state
    ->setRedirect('entity.imce_profile.edit_form', [
    'imce_profile' => $imce_profile
      ->id(),
  ]);
}