-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API Implement namespaces and core API changes throughout
- Loading branch information
1 parent
db8e7bf
commit 50a5f5f
Showing
53 changed files
with
943 additions
and
1,104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
--- | ||
Name: defaultworkflows | ||
--- | ||
Injector: | ||
SilverStripe\Core\Injector\Injector: | ||
SimpleReviewApprove: | ||
class: WorkflowTemplate | ||
class: Symbiote\AdvancedWorkflow\Templates\WorkflowTemplate | ||
constructor: | ||
- Review and Approve | ||
- Single step review and approve. Make sure to update the Apply for approval and Notify users steps! | ||
- 'Review and Approve' | ||
- 'Single step review and approve. Make sure to update the Apply for approval and Notify users steps!' | ||
- 0.2 | ||
properties: | ||
structure: | ||
Apply for approval: | ||
type: AssignUsersToWorkflowAction | ||
transitions: | ||
notify: Notify users | ||
Notify users: | ||
type: NotifyUsersWorkflowAction | ||
'Apply for approval': | ||
type: Symbiote\AdvancedWorkflow\Actions\AssignUsersToWorkflowAction | ||
transitions: | ||
notify: 'Notify users' | ||
'Notify users': | ||
type: Symbiote\AdvancedWorkflow\Actions\NotifyUsersWorkflowAction | ||
transitions: | ||
approval: Approval | ||
Approval: | ||
type: SimpleApprovalWorkflowAction | ||
type: Symbiote\AdvancedWorkflow\Actions\SimpleApprovalWorkflowAction | ||
transitions: | ||
Approve: Publish | ||
Reject: Reject changes | ||
Reject: 'Reject changes' | ||
Publish: | ||
type: PublishItemWorkflowAction | ||
transitions: | ||
assign: Assign Initiator Publish | ||
Assign Initiator Publish: | ||
type: AssignUsersToWorkflowAction | ||
transitions: | ||
notify: Notify Initiator Publish | ||
Notify Initiator Publish: | ||
type: NotifyUsersWorkflowAction | ||
Reject changes: | ||
type: CancelWorkflowAction | ||
transitions: | ||
assign: Assign Initiator Cancel | ||
Assign Initiator Cancel: | ||
type: AssignUsersToWorkflowAction | ||
transitions: | ||
notify: Notify Initiator Cancel | ||
Notify Initiator Cancel: | ||
type: NotifyUsersWorkflowAction | ||
WorkflowService: | ||
type: Symbiote\AdvancedWorkflow\Actions\PublishItemWorkflowAction | ||
transitions: | ||
assign: 'Assign Initiator Publish' | ||
'Assign Initiator Publish': | ||
type: Symbiote\AdvancedWorkflow\Actions\AssignUsersToWorkflowAction | ||
transitions: | ||
notify: 'Notify Initiator Publish' | ||
'Notify Initiator Publish': | ||
type: Symbiote\AdvancedWorkflow\Actions\NotifyUsersWorkflowAction | ||
'Reject changes': | ||
type: Symbiote\AdvancedWorkflow\Actions\CancelWorkflowAction | ||
transitions: | ||
assign: 'Assign Initiator Cancel' | ||
'Assign Initiator Cancel': | ||
type: Symbiote\AdvancedWorkflow\Actions\AssignUsersToWorkflowAction | ||
transitions: | ||
notify: 'Notify Initiator Cancel' | ||
'Notify Initiator Cancel': | ||
type: Symbiote\AdvancedWorkflow\Actions\NotifyUsersWorkflowAction | ||
Symbiote\AdvancedWorkflow\Services\WorkflowService: | ||
properties: | ||
templates: | ||
- %$SimpleReviewApprove | ||
- '%$SimpleReviewApprove' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.