cornernote/yii2-workflow-manager
Composer 安装命令:
composer require cornernote/yii2-workflow-manager
包简介
Workflow Manager for Yii2.
关键字:
README 文档
README
Workflow Manager for Yii2. Extends Yii2-Workflow to provide an interface to manage workflows.
Features
- Create and manage workflows, statuses and transitions using a simple interface.
- Manage metadata for each status to allow additional data such as colors and icons.
- Displays the workflow transitions using Yii2 Workflow View
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require cornernote/yii2-workflow-manager "*"
or add
"cornernote/yii2-workflow-manager": "*"
to the require section of your composer.json file.
Migrations
$ php yii migrate --migrationPath=@cornernote/workflow/manager/migrations
Configuration
$config = [ 'components' => [ 'workflowSource' => [ 'class' => 'cornernote\workflow\manager\components\WorkflowDbSource', ], ], 'modules' => [ 'workflow' => [ 'class' => 'cornernote\workflow\manager\Module', ], ], ];
Usage
Simply visit ?r=workflow within your application to start managing workflows.
Once you have defined a workflow, you can attach it to a model as follows:
class Post extends \yii\db\ActiveRecord { public function behaviors() { return [ [ 'class' => \raoul2000\workflow\base\SimpleWorkflowBehavior::className(), 'defaultWorkflowId' => 'post', 'propagateErrorsToModel' => true, ], ]; } }
License
- Author: Brett O'Donnell cornernote@gmail.com
- Source Code: https://github.com/cornernote/yii2-workflow-manager
- Copyright © 2016 Mr PHP info@mrphp.com.au
- License: BSD-3-Clause https://raw.github.com/cornernote/yii2-workflow-manager/master/LICENSE
Links
统计信息
- 总下载量: 37.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 37
- 点击次数: 0
- 依赖项目数: 26
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-08-15
