Signature zone within workflow

This commit is contained in:
2024-07-18 13:51:08 +00:00
committed by Julien Fastré
parent db73dcffc7
commit 873940786f
11 changed files with 198 additions and 19 deletions

View File

@@ -151,6 +151,28 @@ class Configuration implements ConfigurationInterface
->append($this->addWidgetsConfiguration('homepage', $this->containerBuilder))
->end() // end of widgets/children
->end() // end of widgets
->arrayNode('id_document_kinds')->defaultValue([])
->arrayPrototype()
->children()
->scalarNode('key')->isRequired()->cannotBeEmpty()
->info('the key stored in database')
->example('id_card')
->end()
->arrayNode('labels')->isRequired()->requiresAtLeastOneElement()
->arrayPrototype()
->children()
->scalarNode('lang')->isRequired()->cannotBeEmpty()
->example('fr')
->end()
->scalarNode('label')->isRequired()->cannotBeEmpty()
->example('Carte de séjour')
->end()
->end()
->end()
->end()
->end()
->end()
->end() // end of document types
->arrayNode('cruds')
->defaultValue([])
->arrayPrototype()