Home
Welcome
Here you can find some documentation for the framework behind the code
Templates
Component system
The component system lets you build pages in pure PHP by composing small, self-contained classes instead of editing JSON files. It is the right choice when a page requires custom business logic, complex rendering, or interactions that go beyond what a JSON resource can express.
- Component — a single reusable unit: fetches data, handles POST, renders HTML
- Page (Grid layout) — assembles components in a Bootstrap grid
- Page (Tabs layout) — assembles components in a Bootstrap tabbed interface
Extending the system
You do not need to limit your UD-programming to the ready to go solutions, you can create your own. You can create custom controllers, custom json templates and custom HTML Blocks. Each of the the following sections is going to drive you to extend your software using the path you like the most.