Facilitates the creation of PIM reference data and related views in the PIM.
For more information, please see http://docs.akeneo.com/
CustomEntityBundle | Akeneo PIM Community Edition |
---|---|
v2.3.* | v2.2.* |
v2.2.* | v2.1.* |
v2.1.* | v2.1.* |
v2.0.* | v2.0.* |
v1.10.* | v1.7.* |
v1.9.* | v1.6.* |
v1.8.* | v1.6.* |
v1.7.* | v1.5.* |
You can install this bundle with composer (see requirements section):
php composer.phar require "akeneo-labs/custom-entity-bundle":"2.3.*"
Then add the following lines at the end of your app/config/routing.yml :
pim_customentity:
prefix: /reference-data
resource: "@PimCustomEntityBundle/Resources/config/routing.yml"
and enable the bundle in the app/AppKernel.php
file in the registerBundles()
method:
$bundles = [
// ...
new \Pim\Bundle\CustomEntityBundle\PimCustomEntityBundle(),
]
If your installation is already set up, you have to run the following command in order to add the quick export job:
php bin/console akeneo:batch:create-job "Akeneo Mass Edit Connector" "csv_reference_data_quick_export" "quick_export" "csv_reference_data_quick_export" '{"delimiter": ";", "enclosure": "\"", "withHeader": true, "filePath": "/tmp/reference_data_quick_export.csv"}'
The reference data documentation can be found in the PIM documentation.
Detailled information can be found in the bundle documentation.
$ composer install
$ vendor/bin/phpspec run
$ composer install
$ vendor/bin/php-cs-fixer fix -v --diff --config .php_cs.php
- Install an Akeneo PIM with the CustomEntityBundle
- Copy
Tests/Resources/phpunit.xml
into your baseapp
directory - Copy
Tests/Resources/parameters_test.yml
orTests/Resources/parameters_test_ee.yml
(depending on your PIM version) toapp/config/parameters_test.yml
, and edit accordingly to your config
Then:
$ php bin/console cache:clear --no-warmup --env=test
$ php bin/console pim:installer:db --env=test
$ vendor/bin/phpunit -c app/phpunit.xml
If you want to contribute to this open-source project, thank you to read and sign the following contributor agreement