torqit / pimcore-select-options-creator-bundle
Installs: 571
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:pimcore-bundle
pkg:composer/torqit/pimcore-select-options-creator-bundle
Requires
- pimcore/pimcore: ^11.0
This package is auto-updated.
Last update: 2025-12-18 16:54:43 UTC
README
This bundle will create select options based on the generated .yaml file.
Installing the package via composer
This bundle is easily installed via composer: composer require torqit/pimcore-select-options-creator-bundle
Then add the bundle to your Kernel.php file:
if (class_exists("TorqIT\\SelectOptionsCreatorBundle\\SelectOptionsCreatorBundle")) {
$collection->addBundle(new SelectOptionsCreatorBundle());
}
Steps to create a grid layout on a DataObject:
- Create
select_options.yamlunder the config directory. View the example .yaml file in the repo. - Run the generator command by:
bin/console torq:generate-select-options. You can force re-create the options by adding the--force-recreate-optionsoption.