Draft: Issue #3477363: Add a way to automatically generate basic config forms
Draft: Issue #3477363: Add a way to automatically generate basic config forms
1 open thread
1 open thread
Merge request reports
Activity
1 <?php 2 3 namespace Drupal\Core\Form; 4 5 use Drupal\Core\Config\TypedConfigManagerInterface; 6 7 trait ConfigSchemaFormTrait { 8 9 protected function buildFormForConfig(array $form, string $config_name): array { 10 $config_definition = $this->typedConfigManager()->getDefinition($config_name); 11 // dump($config_definition); 12 13 $set_config_targets = match ($config_definition['original_type']) {
Please register or sign in to reply