Installation
Installation Process
For Pimcore >= 10.5
To install Advanced Object Search Bundle for Pimcore 10.5 or higher, follow the three steps below:
- Install the required dependencies:
composer require pimcore/advanced-object-search
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
return [
// ...
AdvancedObjectSearchBundle\AdvancedObjectSearchBundle::class => ['all' => true],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install AdvancedObjectSearchBundle
For Older Versions
To install the Advanced Object Search Bundle for older versions of Pimcore, please run the following commands instead:
composer require pimcore/advanced-object-search
bin/console pimcore:bundle:enable AdvancedObjectSearchBundle
bin/console pimcore:bundle:install AdvancedObjectSearchBundle
Required Backend User Permission
To access the Advanced Object Search feature, a user needs to meet at least one of the following criteria:
- Be an
admin
user. - Have
bundle_advancedsearch_search
permission.