Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/youwegit/pimcorefixtures
Generator objects from a template for Pimcore. This with use of faker.
https://github.com/youwegit/pimcorefixtures
fixtures pimcore-bundle yml
Last synced: 3 months ago
JSON representation
Generator objects from a template for Pimcore. This with use of faker.
- Host: GitHub
- URL: https://github.com/youwegit/pimcorefixtures
- Owner: YouweGit
- Created: 2016-08-12T09:27:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-27T18:21:25.000Z (about 5 years ago)
- Last Synced: 2024-10-01T15:16:27.767Z (3 months ago)
- Topics: fixtures, pimcore-bundle, yml
- Language: PHP
- Homepage:
- Size: 113 KB
- Stars: 7
- Watchers: 11
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pimcore YML fixtures
Based on [Alice](https://github.com/nelmio/alice)
### How to install
```sh
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
```yaml
# 001_folders.yml
# Object folders
Pimcore\Model\Object\Folder:
products_folder:
key: products
path: /
parentId: 1
```
Load them with:
#### Console
```sh
php bin/console fixture:load --with-cache
```
Load individual files with --files comma separated files without yml extension:
#### Console
```sh
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 settings1. 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
```sh
php bin/console fixtures:generate
```### Delete object/assets/documents
```sh****
php bin/console fixtures:delete-path -t object -p /products
```### Useful links
* [Alice documentation](https://github.com/nelmio/alice)
* [Faker documentation](https://github.com/fzaninotto/Faker)
* [Yml documentation](http://symfony.com/doc/current/components/yaml/yaml_format.html)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