LanguageAddForm::save

public LanguageAddForm::save(array $form, FormStateInterface $form_state)

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/language/src/Form/LanguageAddForm.php, line 84

Class

LanguageAddForm
Controller for language addition forms.

Namespace

Drupal\language\Form

Code

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

  $t_args = array('%language' => $this->entity->label(), '%langcode' => $this->entity->id());
  $this->logger('language')->notice('The %language (%langcode) language has been created.', $t_args);
  drupal_set_message($this->t('The language %language has been created and can now be used.', $t_args));

  if ($this->moduleHandler->moduleExists('block')) {
    // Tell the user they have the option to add a language switcher block
    // to their theme so they can switch between the languages.
    drupal_set_message($this->t('Use one of the language switcher blocks to allow site visitors to switch between languages. You can enable these blocks on the <a href=":block-admin">block administration page</a>.', array(':block-admin' => $this->url('block.admin_display'))));
  }
  $form_state->setRedirectUrl($this->entity->urlInfo('collection'));
}
doc_Drupal
2016-10-29 09:22:03
Comments
Leave a Comment

Please login to continue.