workflow_list.yml.dist 511 B

123456789101112131415161718192021222324
  1. framework:
  2. workflows:
  3. cablemodem_workflow:
  4. type: state_machine
  5. marking_store:
  6. type: single_state
  7. arguments:
  8. - currentState
  9. supports:
  10. - CablemodemBundle\Entity\Cablemodem
  11. initial_place: active
  12. places:
  13. - active
  14. - disable
  15. transitions:
  16. add_config:
  17. from: active
  18. to: active
  19. disable:
  20. from: active
  21. to: disable
  22. active:
  23. from: disable
  24. to: active