You are here

public function BlockContentTypeForm::save in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block_content/src/BlockContentTypeForm.php \Drupal\block_content\BlockContentTypeForm::save()
  2. 10 core/modules/block_content/src/BlockContentTypeForm.php \Drupal\block_content\BlockContentTypeForm::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

core/modules/block_content/src/BlockContentTypeForm.php, line 96

Class

BlockContentTypeForm
The block content type entity form.

Namespace

Drupal\block_content

Code

public function save(array $form, FormStateInterface $form_state) {
  $block_type = $this->entity;
  $status = $block_type
    ->save();
  $edit_link = $this->entity
    ->toLink($this
    ->t('Edit'), 'edit-form')
    ->toString();
  $logger = $this
    ->logger('block_content');
  if ($status == SAVED_UPDATED) {
    $this
      ->messenger()
      ->addStatus(t('Custom block type %label has been updated.', [
      '%label' => $block_type
        ->label(),
    ]));
    $logger
      ->notice('Custom block type %label has been updated.', [
      '%label' => $block_type
        ->label(),
      'link' => $edit_link,
    ]);
  }
  else {
    block_content_add_body_field($block_type
      ->id());
    $this
      ->messenger()
      ->addStatus(t('Custom block type %label has been added.', [
      '%label' => $block_type
        ->label(),
    ]));
    $logger
      ->notice('Custom block type %label has been added.', [
      '%label' => $block_type
        ->label(),
      'link' => $edit_link,
    ]);
  }
  $form_state
    ->setRedirectUrl($this->entity
    ->toUrl('collection'));
}