PHPackages                             teamneusta/pimcore-areabrick-config-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. teamneusta/pimcore-areabrick-config-bundle

ActivePimcore-bundle[Utility &amp; Helpers](/categories/utility)

teamneusta/pimcore-areabrick-config-bundle
==========================================

Object-oriented editable dialog box configuration building for areabricks

v3.0.0(1mo ago)310.1k↓34.6%[3 issues](https://github.com/teamneusta/pimcore-areabrick-config-bundle/issues)[1 PRs](https://github.com/teamneusta/pimcore-areabrick-config-bundle/pulls)MITPHPPHP ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0CI passing

Since Jan 27Pushed 1mo ago9 watchersCompare

[ Source](https://github.com/teamneusta/pimcore-areabrick-config-bundle)[ Packagist](https://packagist.org/packages/teamneusta/pimcore-areabrick-config-bundle)[ RSS](/packages/teamneusta-pimcore-areabrick-config-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (40)Versions (34)Used By (0)

Areabrick Config Bundle
=======================

[](#areabrick-config-bundle)

Object-oriented editable dialog box configuration building for Areabricks.

Installation
------------

[](#installation)

1. **Require the bundle**

    ```
    composer require teamneusta/pimcore-areabrick-config-bundle
    ```
2. **Enable the bundle**

    Add the Bundle to your `config/bundles.php`:

    ```
    Neusta\Pimcore\AreabrickConfigBundle\NeustaPimcoreAreabrickConfigBundle::class => ['all' => true],
    ```

Usage
-----

[](#usage)

This bundle allows you to create Areabrick configuration dialogs in an object-oriented way.

### 1. Prepare Areabrick Class

[](#1-prepare-areabrick-class)

Your Areabrick class must implement the `Pimcore\Extension\Document\Areabrick\EditableDialogBoxInterface` interface and use the `Neusta\Pimcore\AreabrickConfigBundle\HasDialogBox` trait.

Then, implement the `buildDialogBox()` method to define the dialog.

```
