Installation und Configuration
Bundle Installation
For Pimcore >= 11.0
Follow the steps for Pimcore >= 10.6 and additionally run the following command:
composer require pimcore/admin-ui-classic-bundle
For Pimcore >= 10.6 && < 11.0
To install Pimcore Workflow Designer for Pimcore 10.6 or higher, follow the three steps below:
- Install the required dependencies:
composer require pimcore/workflow-designer
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
use Pimcore\Bundle\WorkflowDesignerBundle\PimcoreWorkflowDesignerBundle;
// ...
return [
// ...
PimcoreWorkflowDesignerBundle::class => ['all' => true],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreWorkflowDesignerBundle
For Older Versions
To install the Workflow Designer bundle for older versions of Pimcore, please run the following commands instead:
composer require pimcore/workflow-designer
bin/console pimcore:bundle:enable PimcoreWorkflowDesignerBundle
bin/console pimcore:bundle:install PimcoreWorkflowDesignerBundle
System Requirements
As the Pimcore workflows are defined via symfony configuration files, the bundle needs to be able to create a symfony
configuration file.
Thus, Pimcore needs to have writing access to var/config/workflow-designer/workflows.yaml
and be able to rebuild
the Symfony container.
User Permissions
Pimcore backend users need to have granted the permission Workflow Designer
for accessing the workflow designer.