Skip to content

Generator objects from a template for Pimcore. This with use of faker.

Notifications You must be signed in to change notification settings

YouweGit/PimcoreFixtures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

117 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pimcore YML fixtures

Based on Alice

How to install

composer require youwe/pimcore-fixtures

This plugin is only for DEV, do NOT install on a production server

How to load fixtures

You must enable the bundle as followed php bin/console pimcore:bundle:enable FixtureBundle. To check if the bundle is installed correctly php bin/console pimcore:bundle:list. Place your fixtures in /var/bundles/FixtureBundle/fixtures named "001_object_name.yml", "002_object_name.yml" etc.

Example fixture for creating a folder

# 001_folders.yml
# Object folders
Pimcore\Model\Object\Folder:
    products_folder:
        key: products
        path: /
        parentId: 1

Load them with:

Console

php bin/console fixture:load --with-cache

Load individual files with --files comma separated files without yml extension:

Console

php bin/console fixture:load --files filename1,filename2

Backend

Go to Extensions \ PimcoreFixtures \ plugin settings \ Load fixtures

Fixtures generator (still beta)

Backend

Go to Extensions \ PimcoreFixtures \ plugin settings

  1. Object path: the root where to start generating fixtures
  2. Object name: Recommended would be the object class ex. product, will translate into at [PIMCORE_ROOT]/website/var/plugins/PimcoreFixtures/fixtures/000_product.yml
  3. Max level deep: Will stop at the specified level (default 1) and if greater then 1 then level will be appended to filename
  4. Click generate. The generated files should be at [PIMCORE_ROOT]/website/var/plugins/PimcoreFixtures/fixtures/*.yml

Console

php bin/console fixtures:generate

Delete object/assets/documents

php bin/console fixtures:delete-path  -t object -p /products

Useful links

Todo:

  • Support for following fields one fixtures:generate

    • Object\ClassDefinition\Data\Classificationstore
    • Object\ClassDefinition\Data\Fieldcollection
    • Object\ClassDefinition\Data\ObjectsMetadata
    • Object\ClassDefinition\Data\MultihrefMetadata
    • Object\ClassDefinition\Data\Objectbricks
  • security checks / user restrictions

  • better error handling in ext-js interface

  • live progress when loading fixtures

About

Generator objects from a template for Pimcore. This with use of faker.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 9