dev-master
9999999-devTwo- and three-step approval workflow for page content in SilverStripe CMS
The Requires
by Rainer Spittel
silverstripe workflow
Two- and three-step approval workflow for page content in SilverStripe CMS
Please note: this module is no longer actively maintained., (*1)
legacydatetimefields
module (see http://silverstripe.org/legacydatetimefields-module)You need to choose an 'approval path'. This details the actual process a request goes through before it gets published to the live site., (*2)
There are two approval paths supplied: "Two Step" and "Three Step"., (*3)
Author submits a request. Publisher approves it change is pushed live immediately., (*4)
This workflow is automatically set up for you and doesn't need any configuration., (*5)
Author submits a request. Approver approves it. Publisher publishes it at a later date., (*6)
Attach the following decorators in your mysite/_config.php
:, (*7)
// remove two-step decorators Object::remove_extension('WorkflowRequest', 'WorkflowTwoStepRequest'); Object::remove_extension('SiteTree', 'SiteTreeCMSTwoStepWorkflow'); Object::remove_extension('SiteConfig', 'SiteConfigTwoStepWorkflow'); // add three-step decorators Object::add_extension('WorkflowRequest', 'WorkflowThreeStepRequest'); Object::add_extension('SiteTree', 'SiteTreeCMSThreeStepWorkflow'); Object::add_extension('LeftAndMain', 'LeftAndMainCMSThreeStepWorkflow'); Object::add_extension('SiteConfig', 'SiteConfigThreeStepWorkflow');
Refresh your database schema through http://<your-host>/dev/build
., (*8)
Based on your permission levels, authors in the CMS will see different actions on a page, and a new "Workflow" tab listing open requests., (*9)
You can allow Administrator users to Publish without giving a comment. by placing the following in your mysite/_config.php file: This will disable the popup for this situation., (*10)
LeftAndMainCMSWorkflow::set_prompt_admin_for_comments(false);
Email alerts are configurable by the developer., (*11)
The following line sets a config option, (*12)
WorkflowRequest::set_alert(CLASS, EVENT, GROUP, NOTIFY);
CLASS is one of either WorkflowPublicationRequest or WorkflowDeletionRequest, (*13)
EVENT is one of, (*14)
GROUP is either author or publisher or approver, (*15)
NOTIFY is either true or false, (*16)
The cmsworkflow uses the translation facilities of SilverStripe extensively. This allows us to support the module in different languages, with many languages available out of the box., (*17)
If you want to customise these strings further, there is another module called customtranslation that allows you to override the strings provided in the lang files, without changing the lang files. The module can override strings across the whole site, not just cmsworkflow. customtranslation will be supported for SilverStripe 2.4.1 and up., (*18)
See customtranslation on silverstripe.org, (*19)
Two- and three-step approval workflow for page content in SilverStripe CMS
silverstripe workflow