You are here

LingotekProfileAddForm.php in Lingotek Translation 3.4.x

File

src/Form/LingotekProfileAddForm.php
View source
<?php

namespace Drupal\lingotek\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Provides a form for lingotek profiles addition.
 */
class LingotekProfileAddForm extends LingotekProfileFormBase {

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    parent::save($form, $form_state);
    $this
      ->messenger()
      ->addStatus($this
      ->t('The Lingotek profile has been successfully saved.'));
    $form_state
      ->setRedirect('lingotek.settings');
  }

}

Classes

Namesort descending Description
LingotekProfileAddForm Provides a form for lingotek profiles addition.