Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). Varbase Media Header 9.2.1 Minor update available for module varbase_media_header (9.2.1). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

This module automatically generates configuration forms for your Drupal modules based on their schema definitions. It simplifies the process of creating forms, especially for simple modules or limited user bases, by eliminating the need for manual form coding.

The Schema form module can do everything that this module does, and more. I will continue to fix bugs in this module, but development of new features should happen in Schema form.

Generate your custom module's configuration form automatically from its schema definitions.

Writing config forms is boring. Mostly they all look the same, or are not very important, especially if it's for simple or small modules or for a limited amount of users. So let's automate it!

Example

If your module has config, it will have a schema file, e.g. at my_module/config/schema/my_module.schema.yml. Here is an example:

my_module.settings:
  type: config_object
  label: 'My module settings'
  translatable: false
  mapping:
    foo:
      type: string
      title: 'Foo'
      label: 'How much foo?'
    bar:
      type: boolean
      title: 'Enable bar'
      label: 'Whether to run bar or not.'

To create an automatic config form using this schema, create my_module/Form/ConfigForm.php with the following:


namespace Drupal\my_module\Form;

use Drupal\auto_config_form\AutoConfigFormBase;

/**
 * Settings form for my module.
 *
 * @package Drupal\my_module\Form
 */
class ConfigForm extends AutoConfigFormBase {

  /**
   * {@inheritDoc}
   */
  protected function getSchemaKey(): string {
    return 'my_module.settings';
  }

}

That's it!

Next steps

Drupal core compatibility

  • Drupal 10: Use version 1.x
  • Drupal 11: Use version 2.x

Drupal 10 needs protected $typedConfigManager; and Drupal 11 needs protected TypedConfigManagerInterface $typedConfigManager;, and they are mutually exclusive. This forces us to maintain separate versions of this module for Drupal 10 and Drupal 11. See https://www.drupal.org/project/auto_config_form/issues/3532554 and https://www.drupal.org/project/auto_config_form/issues/3412011 for where we accidentally messed this up twice.

Similar modules

Activity

Total releases
4
First release
Apr 2025
Latest release
11 months ago
Releases (12 mo)
3 ▲ from 1
Maintenance
Slowing

Release Timeline

Releases

Version Type Release date
2.0.0 Stable Aug 14, 2025
1.2.0 Stable Aug 14, 2025
1.1.2 Stable Aug 14, 2025
1.1.1 Stable Apr 9, 2025