PHPackages                             aropixel/page-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. [Admin Panels](/categories/admin)
4. /
5. aropixel/page-bundle

ActiveSymfony-bundle[Admin Panels](/categories/admin)

aropixel/page-bundle
====================

Gestion de page pour admin Aropixel

v2.0.11(3y ago)15.1k↓43.3%[1 PRs](https://github.com/aropixel/page-bundle/pulls)MITPHP

Since Jun 12Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/aropixel/page-bundle)[ Packagist](https://packagist.org/packages/aropixel/page-bundle)[ RSS](/packages/aropixel-page-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (37)Used By (0)

 [ ![Aropixel logo](https://avatars1.githubusercontent.com/u/14820816?s=200&v=4) ](http://www.aropixel.com/)

Aropixel Page Bundle
====================

[](#aropixel-page-bundle)

 Aropixel Page Bundle is a complementray bundle of [Aropixel Admin Bundle](https://github.com/aropixel/admin-bundle). It gives possibility to manage standard pages for your website.

[![GitHub last commit](https://camo.githubusercontent.com/85edbbc1d513794b468ae730b9b4a4be67f4b900a1308514af50b1e8fdd73163/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f61726f706978656c2f706167652d62756e646c652e737667)](https://camo.githubusercontent.com/85edbbc1d513794b468ae730b9b4a4be67f4b900a1308514af50b1e8fdd73163/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f61726f706978656c2f706167652d62756e646c652e737667)[![GitHub issues](https://camo.githubusercontent.com/427592769082167ec412a777f5ffdfb73feedb761f67ce36e4b3353ab3dba8b3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f61726f706978656c2f706167652d62756e646c652e737667)](https://github.com/stisla/stisla/issues)[![License](https://camo.githubusercontent.com/80423acc8900cb941e248e482660fa4f191ab64684c9856ca6d447afad295c69/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f61726f706978656c2f706167652d62756e646c652e737667)](LICENSE)

[![Aropixel Page Preview](./screenshot-1.png)](./screenshot-1.png)

[![Aropixel Page Preview](./screenshot-2.png)](./screenshot-2.png)

Table of contents
-----------------

[](#table-of-contents)

- [Quick start](#quick-start)
- [License](#license)

Quick start
-----------

[](#quick-start)

- Create your symfony 4 project &amp; install Aropixel AdminBundle
- Require Aropixel Page Bundle : `composer require aropixel/page-bundle`
- Apply migrations
- Include the routes :

```
aropixel_page:
  resource: '@AropixelPageBundle/Resources/config/routing.yml'
  prefix:   /admin

```

- create a ConfigureMenuListener class, register it as an event listener and include the page menu in the listener:

```
    App\EventListener\ConfigureMenuListener:
        tags:
            - { name: kernel.event_listener, event: aropixel.admin_menu_configure, method: onMenuConfigure }

```

```
