sonata_core.yaml 902 B

123456789101112131415161718192021222324252627
  1. sonata_core:
  2. form_type: horizontal
  3. flashmessage:
  4. success:
  5. types:
  6. - {type: my_custom_bundle_success}
  7. - {type: my_other_bundle_success}
  8. warning:
  9. types:
  10. - {type: my_custom_bundle_warning}
  11. - {type: my_other_bundle_warning}
  12. error:
  13. css_class: danger # optionally, a CSS class can be defined
  14. types:
  15. - {type: my_custom_bundle}
  16. confirmation: # You can add custom types too
  17. types:
  18. - {type: custom_bundle_type}
  19. confirm: # You can add custom types too
  20. types:
  21. - {type: custom_bundle_type}
  22. normal:
  23. types:
  24. - {type: custom_bundle_type}
  25. no_layout: # You can add custom types too
  26. types:
  27. - {type: custom_bundle_type}