承接 silverstripe/cmsworkflow 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

silverstripe/cmsworkflow

Composer 安装命令:

composer require silverstripe/cmsworkflow

包简介

Two- and three-step approval workflow for page content in SilverStripe CMS

README 文档

README

CMS Workflow Module

Please note: this module is no longer actively maintained.

Requirements

Installation

You need to choose an 'approval path'. This details the actual process a request goes through before it gets published to the live site.

There are two approval paths supplied: "Two Step" and "Three Step".

Two Step

Author submits a request. Publisher approves it change is pushed live immediately.

This workflow is automatically set up for you and doesn't need any configuration.

Three Step

Author submits a request. Approver approves it. Publisher publishes it at a later date.

Attach the following decorators in your mysite/_config.php:

// 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.

Usage

Based on your permission levels, authors in the CMS will see different actions on a page, and a new "Workflow" tab listing open requests.

Popup alerts

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.

LeftAndMainCMSWorkflow::set_prompt_admin_for_comments(false);

Email alerts

Email alerts are configurable by the developer.

The following line sets a config option

WorkflowRequest::set_alert(CLASS, EVENT, GROUP, NOTIFY);

CLASS is one of either WorkflowPublicationRequest or WorkflowDeletionRequest

EVENT is one of

  • request
  • publish (3 step only)
  • approve
  • deny
  • cancel
  • comment

GROUP is either author or publisher or approver

NOTIFY is either true or false

Customising strings via translation

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.

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.

See customtranslation on silverstripe.org

统计信息

  • 总下载量: 226
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 25
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 25
  • Watchers: 11
  • Forks: 12
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2013-01-03