- Group wise dynamic form creation ability
- Store global configuration
- Store user wise configuration
- Get configuration through rest API
- Download and Enable EasyConfigBundle
- Create Config entity class
- Configure yaml file
- Update database schema
- Create your first form
- Register the bundle’s routes
- Overriding default EasyConfigBundle templates (optional)
Open a command console, enter project directory and execute the following command to download the latest stable version of this bundle:
$ composer require xiidea/easy-config
Enable Bundle (No need when Flex is available):
The bundle should be automatically enabled by Symfony Flex. If you don't use Flex, you will need to enable the bundle manually by adding the following line in the config/bundles.php file of your project:
<?php
// src/Kernel.php
return [
// ...
Xiidea\EasyConfigBundle\XiideaEasyConfigBundle::class => ['all' => true],
];
By default EasyConfigBundle
supports Doctrine ORM. However, you must provide an Entity class and the class has to extend the class \Xiidea\EasyConfigBundle\Model\BaseConfig
. To configure the Entity class properly please follow the detailed instructions.
Create a file in the following directory config/packages
with the exact name xiidea_easy_config.yaml
A sample config file is available in this path Resources/config/config-sample.yml
. Copy this sample file's content and paste to just created file. Do not forget to change your Entity class name which has been mentioned in Step 3.
# Xiidea Easy Config Configuration Sample
xiidea_easy_config:
config_class: App\Entity\Configuration
It’s time to set up the database schema, open your command console, go to your project root path and execute the following command.
$ php bin/console doctrine:schema:update --force
Create a form group class and form type with your necessary fields. Please follow the instructions to create the form group and type.
Now it's time to access the form you have just created, for that you have to include bundle's routes to your application by the following way.
xiidea_config_route:
resource: "@XiideaEasyConfigBundle/Resources/config/routes.yaml"
prefix: '/config'
Note: You may change the prefix as your wish
Following routes are available in this bundle:
- Index route
(prefix/)
: List of all forms - Form group route
(prefix/group_key)
: Form of specific group key
Template overriding is not important to use EasyConfigBundle bundle but if you want to keep UI as similar as your application you can override the template, to do so follow the instructions
Congratulations !
Your application is ready to store configurations, just browse the routes.
The Easy Config Bundle is licensed under the MIT license. See the LICENSE file for more details.