Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 858 Bytes

00_Installation.md

File metadata and controls

38 lines (26 loc) · 858 Bytes

Installation of Advanced Object Search

:::info

This bundle is only supported on Pimcore Core Framework 11.

:::

Installation

To install Advanced Object Search Bundle, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/advanced-object-search
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:
return [
    // ...
    AdvancedObjectSearchBundle\AdvancedObjectSearchBundle::class => ['all' => true],
    // ...
];
  1. Install the bundle:
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.