Installation of the Backend Power Tools Bundle
info
This bundle is only supported on Pimcore Core Framework 11.
Installation
To install the Backend Power Tools bundle, follow the three steps below:
- Install the required dependencies:
composer require pimcore/backend-power-tools-bundle
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
use Pimcore\Bundle\BackendPowerToolsBundle\PimcoreBackendPowerToolsBundle;
// ...
return [
// ...
PimcoreBackendPowerToolsBundle::class => ['all' => true],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreBackendPowerToolsBundle
Uninstallation
Uninstalling the bundle does not clean up the bundle_backend_power_tools_*
tables. After uninstalling, make sure to clean them up manually.