You are here

SessionTestForm.php in Zircon Profile 8.0

File

core/modules/system/tests/modules/session_test/src/Form/SessionTestForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\session_test\Form\SessionTestForm.
 */
namespace Drupal\session_test\Form;

use Drupal\Component\Utility\SafeMarkup;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Form controller for the test config edit forms.
 */
class SessionTestForm extends FormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'session_test_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['input'] = array(
      '#type' => 'textfield',
      '#title' => 'Input',
      '#required' => TRUE,
    );
    $form['actions'] = array(
      '#type' => 'actions',
    );
    $form['actions']['submit'] = array(
      '#type' => 'submit',
      '#value' => 'Save',
    );
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    drupal_set_message(SafeMarkup::format('Ok: @input', array(
      '@input' => $form_state
        ->getValue('input'),
    )));
  }

}

Classes

Namesort descending Description
SessionTestForm Form controller for the test config edit forms.