Skip to main content
Version: 2023.2

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:

  1. Install the required dependencies:
composer require pimcore/backend-power-tools-bundle
  1. 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],
// ...
];
  1. 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.