SystemConfigFormTestForm.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\form_testFile
core/modules/system/tests/modules/form_test/src/SystemConfigFormTestForm.phpView source
<?php
namespace Drupal\form_test;
use Drupal\Core\Form\ConfigFormBase;
/**
* Tests the ConfigFormBase class.
*
* @internal
*/
class SystemConfigFormTestForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'form_test_system_config_test_form';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [];
}
}
Classes
Name | Description |
---|---|
SystemConfigFormTestForm | Tests the ConfigFormBase class. |