2017 © Pedro Peláez
 

symfony-bundle adminbundle

Generic admin bundle for Symfony2 from L'arrière-guichet

image

bluebear/adminbundle

Generic admin bundle for Symfony2 from L'arrière-guichet

  • Thursday, July 12, 2018
  • by JohnKrovitch
  • Repository
  • 3 Watchers
  • 4 Stars
  • 142 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 39 Open issues
  • 20 Versions
  • 0 % Grown

The README.md

Latest Stable Version Build Status Scrutinizer Code Quality Code Coverage Build Status Code Intelligence Status SensioLabsInsight Total Downloads, (*1)

AdminBundle

The AdminBundle helps you to create flexible and robust administration application., (*2)

It provides PHP attributes or yaml configuration to build views to show, create; update and delete resources. It comes with a native Doctrine ORM integration, and can also be used with any architecture., (*3)

The AdminBundle is highly customizable using configuration or with events to allow you tu build dynamic administration interfaces., (*4)

Features

  • Easy to use PHP attributes or yaml configuration
  • Highly customizable
  • Doctrine ORM integration
  • Views with pagination, sorting and filtering
  • Dynamic menus
  • Bootstrap 5 integration

Install the Bundle

composer require lag/adminbundle

If you do not use Symfony Flex, follow those extra steps., (*5)

Step 1: Install the Bundle

Open a command console, execute the following command in your project directory to install the latest stable version of the bundle:, (*6)

composer require lag/adminbundle

If you do not use flex, read the extra steps to install the bundle, (*7)

Step 2: Configure the routing

Import the routing configuration to have the admin generated routes :, (*8)

    # config/routes.yaml        
    lag_admin:
        resource: '@LAGAdminBundle/Resources/config/routing/routing.yaml'
        prefix: /admin

Step 3 : Configure an entity

# config/packages/lag_admin.yaml
lag_admin:
    application:
        title: My Little TaunTaun application       
# config/admin/resources/article.yaml
article:
    entity: App\Entity\Article 
    actions:
        create: ~
        edit: ~
        list: ~
        delete: ~

As new routes are dynamically created, the cache clearing is required (symfony cache:clear), (*9)

Now you could visit http://127.0.0.1:8000/admin/article/list to see a list of your entities., (*10)

Yan can visit http://127.0.0.1:8000/app_dev.php/admin/ to see the homepage of your admin interface, (*11)

Documentation

  1. How to use
  2. Customization
    • a. Custom actions
    • b. Custom render
    • c. Custom data
    • d. Custom routes and urls
  3. Reference
    • a. Application configuration
    • b. Admin configuration
  4. FAQ
  5. Configuration reference

Testing

To run the admin test suite, run the following :, (*12)

make tests

Road map

v1.1

  • Add dynamic id column (instead of required "id" column) to improve generic and handle multiple ids columns

v1.0

  • Add more testing

History

Version 0.4 : * Dynamic CRUD for your entities (no code generation) * Simple configuration in yml (look alike symfony1 generators.yml syntax) * List with pagination, sorting and batch remove (filters are coming) * Full translated * Main and left menu integration * Fully customizable (use your own controllers, data providers or templates) * Bootstrap 3 integration (can be disabled or override), (*13)

The Versions

17/03 2015

v0.1

0.1.0.0 https://github.com/CleverGaming/AdminBundle

Generic admin bundle for Symfony2

  Sources   Download

MIT

The Requires

 

by Avatar JohnKrovitch
by JohanDufour
by Avatar VincentChalnot

symfony2 admin generic backoffice