https://github.com/putyourlightson/craft-sift-workflow
Sift Workflow plugin for Craft CMS 3.
https://github.com/putyourlightson/craft-sift-workflow
Last synced: about 1 year ago
JSON representation
Sift Workflow plugin for Craft CMS 3.
- Host: GitHub
- URL: https://github.com/putyourlightson/craft-sift-workflow
- Owner: putyourlightson
- License: mit
- Created: 2020-04-27T07:45:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T06:05:52.000Z (about 6 years ago)
- Last Synced: 2025-02-01T05:14:18.717Z (over 1 year ago)
- Language: PHP
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Sift Workflow Plugin for Craft CMS 3
Adds custom review processes to the Workflow plugin for specific categories.
## Requirements
Craft CMS 3.4.0 or later and Workflow 1.5.0 or later.
## Installation
Install the plugin using composer.
```
composer require putyourlightson/craft-sift-workflow
```
## Configuration
Copy the `src/config.php` config file to `craft/config` as `sift-workflow.php` and add a category group ID.
```php
return [
'*' => [
/**
* The category group ID to use for custom review processes
*/
'categoryGroupId' => 1,
/**
* The categories field handle to sift by
*/
'categoriesFieldHandle' => 'userCategories',
],
];
```
## License
This plugin is licensed for free under the MIT License.
Created by [PutYourLightsOn](https://putyourlightson.com/).