sbyaute / adminlte-make
AdminLTE Make helps you create controllers and templates boostraped for AdminLTE theme bundle
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.2.5
- doctrine/annotations: ^1.0
- kevinpapst/adminlte-bundle: ^3.2
- omines/datatables-bundle: ^0.5.1
- sensio/framework-extra-bundle: ^5
- symfony/console: 5.*
- symfony/form: 5.*
- symfony/maker-bundle: ^1.0
- symfony/security-bundle: 5.*
- symfony/translation: 5.*
- symfony/twig-bundle: ^5
- symfony/validator: 5.*
This package is not auto-updated.
Last update: 2025-03-21 13:40:04 UTC
README
This repository contains AdminLTEMaker bundle which helps you create controller skeletons and templates based on AdminLTE bundle and DataTables bundle.
Fork from Pretorien / AdminLTEMaker
Add :
- Personal templates
- Delete method with token and modal
- Modal option to create CRUD with modal
Minimum requirements
- Symfony 5.0
- PHP 7.2
- Twig 2.0
- AdminLTE bundle
- DataTables bundle
Installation with Composer
Installation using composer :
composer require sbyaute/adminlte-maker
Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php
file of your project:
<?php return [ // ... Sbyaute\AdminLTEMakerBundle\AdminLTEMakerBundle::class => ['all' => true], ];
Usage
This bundle provides several commands under the make: namespace. List them all executing this command:
php bin/console list make:adminlte make:adminlte:controller Creates a new controller class make:adminlte:crud Creates AdminLTE CRUD for Doctrine entity class make:adminlte:crudmodal Creates AdminLTE CRUD (modal mode) for Doctrine entity class
Configuration
This bundle doesn't require any configuration. But, you can configure the base layout and several parameters :
php bin/console config:dump admin_lte_make admin_lte_make: base_layout: '@AdminLTE/layout/default-layout.html.twig' skeleton_dir: .../src/DependencyInjection/../Resources/skeleton/ datatable: cdn_css: 'https://cdn.datatables.net/v/dt/jq-3.2.1/dt-1.10.16/datatables.min.css' cdn_js: 'https://cdn.datatables.net/v/dt/jq-3.2.1/dt-1.10.16/datatables.min.js'
License and contributors
Published under the MIT, read the LICENSE file for more information.