PHPackages                             sqli/ezplatform\_adminui\_extended - 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. sqli/ezplatform\_adminui\_extended

Abandoned → [sqli/eztoolbox](/?search=sqli%2Feztoolbox)Ezplatform-bundle[Admin Panels](/categories/admin)

sqli/ezplatform\_adminui\_extended
==================================

SQLI eZPlatform AdminUI Extended is a bundle that add a new tab in admin top bar and allow to display and CRUD entities

v0.4(6y ago)01.4k[3 PRs](https://github.com/DocDams/SQLIEzPlatformAdminUiExtended/pulls)MITPHPPHP ^7.1

Since May 24Pushed 2y ago1 watchersCompare

[ Source](https://github.com/DocDams/SQLIEzPlatformAdminUiExtended)[ Packagist](https://packagist.org/packages/sqli/ezplatform_adminui_extended)[ Docs](https://github.com/DocDams/EzPlatformAdminUiExtended)[ RSS](/packages/sqli-ezplatform-adminui-extended/feed)WikiDiscussions master Synced yesterday

READMEChangelog (5)Dependencies (7)Versions (10)Used By (0)

SQLI eZPlatform Admin UI Extended Bundle
========================================

[](#sqli-ezplatform-admin-ui-extended-bundle)

[SQLI](http://www.sqli.com) eZPlatform AdminUI Extended is a bundle that add a new tab in admin top bar and allow to display and CRUD entities

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

[](#installation)

### Install with composer

[](#install-with-composer)

```
composer require sqli/ezplatform_adminui_extended:dev-master

```

### Register the bundle

[](#register-the-bundle)

Activate the bundle in `app/AppKernel.php`

```
// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new SQLI\EzPlatformAdminUiExtendedBundle\SQLIEzPlatformAdminUiExtendedBundle(),
    ];
}
```

### Add routes

[](#add-routes)

In `app/config/routing.yml` :

```
# SQLI Admin routes
_sqli_admin:
    resource: "@SQLIEzPlatformAdminUiExtendedBundle/Resources/config/routing.yml"
    prefix: /
```

### Assets

[](#assets)

Generate assets :

```
php bin/console assetic:dump
php bin/console cache:clear
```

### Parameters

[](#parameters)

Configure directories (and namespaces if not according to PSR-0 rules) entities to lookup :

```
sqli_ez_platform_admin_ui_extended:
    entities:
        - { directory: 'Acme/AcmeBundle/Entity/Doctrine' }
        - { directory: 'Acme/AcmeBundle2/Entity/Doctrine', namespace: 'Acme\AcmeBundle2NoPSR0\ORM\Doctrine' }
```

Use "~" if the namespace of your classes observe PSR-0 rules or specify directory which contains them.

*(Optional) Change label tabname*

You can change label of the default tab using this translation key for domain `sqli_admin` : **sqli\_admin\_\_menu\_entities\_tab\_\_default**

Annotations on entities :

```
