You are here

SystemConfigFormTestForm.php in Zircon Profile 8

Namespace

Drupal\form_test

File

core/modules/system/tests/modules/form_test/src/SystemConfigFormTestForm.php
View source
<?php

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

use Drupal\Core\Form\ConfigFormBase;

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

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

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [];
  }

}

Classes

Namesort descending Description
SystemConfigFormTestForm Tests the ConfigFormBase class.