Module Builder is available in the Developer context and requires some knowledge of database table design, column types and form layout. It is intended to create some skeleton code for you that you can then continue working with. It cannot modify existing files and will overwrite files if you try.
The builder generates the code for a module based on the inputs to a few form fields and can build a DB based module or a module without DB access. The builder can create a DB table for you or you can use an existing db table to create the module.
To create a new module which does not require DB access requires you to fill out one form field (the module name field) and pressing the "Build" button.
This will generate a module in the application/modules folder with config, controllers, language, migrations (for permissions) and view files. Amazing for one form field and a button click.
Of course that's just the basic module. To get more you have to give more!
If you want to use a DB table then you need to fill out more fields. You can choose to build a new DB table or choose an existing table.
You must choose the number of fields you would like in the table, excluding the primary key field which is automatically included.
Then for every field you fill in the form Label, table field name, form input element, table field type, table field length and the form validation settings you would like.
The primary key is assumed to be "id" but this is editable before (and of course after) the form is submitted.
Once the field details have been entered then just click the "Build" button.
Hey presto! Now you have a brand new shiny module with all files mentioned above as well as a new model file and a migration file to create the table in the database. The migration file is even run automatically so you can use the module straight away.
You must choose the name of the table which you would like to use to build your module.
The table name must include the prefix used for your cms_system site which is "bf_" by default. If your table does not have this prefix then please rename it to include the prefix. Now click on the "Build" button.
This reads the structure of the database table and picks out the field characteristics including the primary field.
The page returned includes settings for each of the fields and sets up the field label for you.
For every field you can change this data but it is advisable to only change the Label and Validation settings as anything else may cause errors.
When you are finished editing the fields just click the "Build" button again.
Now you have a new module based on your previous database table with all files mentioned above as well as a new model file. The migration file is not created in this case as the table already exists but there is a migration file for the permission settings which is processed automatically so you can use the module straight away.
There are lots of options which you can use when building your module. These options are hidden by default but to see them you just click on the "Toggle Advanced Options" links.
Clicking on the link will display the options below the link. Then for every field you fill in the form Label, table field name, form input element, table field type, table field length and the form validation settings you would like.
There are two sets of options, Module Options and Table Options which we will describe below.
The Module Options allow you to customize the module functionality. The options are:
The Table Options are related to the DB table if you chose to build the module with DB access. The options are:
The Module Builder is a great way to get started but there are a couple of issues which you should be aware of: