SystemConfigFormTestForm.php

Contains \Drupal\form_test\SystemConfigFormTestForm.

Namespace

Drupal\form_test

File

drupal/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/SystemConfigFormTestForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\form_test\SystemConfigFormTestForm.
 */
namespace Drupal\form_test;

use Drupal\system\SystemConfigFormBase;

/**
 * Tests the SystemConfigFormBase class.
 */
class SystemConfigFormTestForm extends SystemConfigFormBase {

  /**
   * Implements \Drupal\Core\Form\FormInterface::getFormID().
   */
  public function getFormID() {
    return 'form_test_system_config_test_form';
  }

}

Classes

Namesort descending Description
SystemConfigFormTestForm Tests the SystemConfigFormBase class.