Changes between Version 11 and Version 12 of BluePrint/WorkflowSupport
- Timestamp:
- 07/28/13 11:52:52 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/WorkflowSupport
v11 v12 88 88 * All configuration will be placed in private/template/<module-name>/default 89 89 * The configuration pattern is going to be very easy to define a configuration pattern first one need to import S3WorkflowNode class 90 * Now Each node will be defined something like S3WorkflowNode(“req”,”req”,”create”) 90 * Each node will be defined something like S3WorkflowNode("status name").handle("req","req","create") 91 * Here {{{.handle("req","req","create")}}} will contain the action that will update the current node's status i.e only after clicking on this particular action user will be able to achieve the next node. 92 * Developers have full freedom to two handle per node, i.e two action can achieve next node. Eg. 93 {{{ 94 N("create incident").handle("event", "incident","create").handle("req","req","create") 95 }}} 96 91 97 * And full workflow can be defined like 92 98 {{{ … … 107 113 * Developer will be free to configure prep and postp for each node. 108 114 * this will be added something like this - 109 110 115 {{{ 111 116 112 117 N("create incident").handle("event","incident",prep,postp) 113 118 }}} 114 115 116 119 117 120 === Technologies ===