Changes between Version 11 and Version 12 of BluePrint/WorkflowSupport


Ignore:
Timestamp:
07/28/13 11:52:52 (11 years ago)
Author:
hardik juneja
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/WorkflowSupport

    v11 v12  
    8888* All configuration will be placed in private/template/<module-name>/default
    8989* 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
    9197* And full workflow can be defined like
    9298{{{
     
    107113* Developer will be free to configure prep and postp for each node.
    108114* this will be added something like this -
    109 
    110115{{{
    111116
    112117N("create incident").handle("event","incident",prep,postp)
    113118}}}
    114 
    115 
    116119
    117120=== Technologies ===