rulesUI by basecom
Description
Overview
The rules engine is one of the most important features of the akeneo enterprise edition and definitely increases the efficiency of working with product information. Unfortunately, working with the rules engine was a tedious and time consuming task because you had to use YAML files to setup your individual rules.
Not anymore though!
The new rulesUI by basecom adds an elaborate user interface to the rules engine of your akeneo enterprise edition. After the rulesUI installation you can easily add, edit and delete rules directly in the akeneo backend. A YAML file is no longer needed.
Features
- Easily add, edit and delete several conditions and actions
- Automatic validation of the added rules before saving
- Select only actions and conditions which are possible and allowed
Requirements
- Akeneo Enterprise Edition
- Akeneo Version 1.6.x, 2.0.x, 3.0.x, 4.0.x
Release notes
Version 4.0.0 compatible with Enterprise Edition.
Documentation
Installation
Enable the bundle
Enable the bundle in the `app/AppKernel.php` file in the `registerBundles()` method:
$bundles = [
// ...
new \Basecom\Bundle\RulesEngineBundle\BasecomRulesEngine(),
]
Enable the route in the 'app/routing.yml' file
basecom_rules_routing:
resource: "@BasecomRulesEngine/Resources/config/routing/rules.yml"
Clear you cache:
php app/console cache:clear --env=prod
reset your assets:
rm -rf app/cache/* ./web/bundles/* ./web/css/* ./web/js/*
app/console --env=prod pim:installer:assets
app/console --env=prod cache:warmup