Building express entities via code and not via UI
Permalink
Hi,
I am examining the CMS for a new project.
I want to build the express entities and behaviour via code and not via UI.
The main reason is that I want it to be in source control and not in the database (Im talking about metadata and not data).
I want to bring it to a place where all the logic and metadata is in code and not in the database.
Exactly like:
Thanks
I am examining the CMS for a new project.
I want to build the express entities and behaviour via code and not via UI.
The main reason is that I want it to be in source control and not in the database (Im talking about metadata and not data).
I want to bring it to a place where all the logic and metadata is in code and not in the database.
Exactly like:
<?php $a = new Area('Area Name'); $a->display($c); ?>
Thanks