Drupal is a registered trademark of Dries Buytaert
Release: Excel Serialization 2.1.2 Minor update available for module xls_serialization (2.1.2). Release: Time Zone Field 8.x-1.14 Minor update available for module tzfield (8.x-1.14). Module Revived: Entity API 8.x-1.7 Module entity updated after 17 months of inactivity (8.x-1.7). Release: Varbase - The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 10.1.2 Minor update available for distribution varbase (10.1.2). Release: MCP Sentinel 2.8.0 Minor update available for module mcp_sentinel (2.8.0). Release: Vartheme Bs5 4.1.1 Minor update available for theme vartheme_bs5 (4.1.1). Release: Varbase Heroslider 1.1.3 Minor update available for module varbase_heroslider (1.1.3). Release: Varbase Demo 1.1.2 Minor update available for module varbase_demo (1.1.2). Release: Varbase Dashboards 2.0.3 Minor update available for module varbase_dashboards (2.0.3). Security Coverage: Role Aware Maxlength Module role_aware_maxlength now has official Drupal security advisory coverage.

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

Tracked releases
4
Tracked since
Apr 2025
Latest release
1 year ago
Releases (12 mo)
0 ▼ from 4
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