Example 1. | - | Hello World |
This is a simplest code that outputs "Hello, world" in the browser. It demonstrates a
basic logic of MVC framework work.
|
||
Example 2. | - | Static Site |
This is a static web site, consists from the few pages. It allows page navigation by using a
top menu, adding/editing content of the pages, changing HTML code, etc. No database used to
store page contents, it may be done directly via the code of appropriate controller. This script
uses a template feature of the framework.
|
||
Example 3. | - | Simple Login System |
This is a simple login system, consists from the few pages and login module. It allows page
navigation by using a top menu, adding/editing content of the pages, changing HTML code, etc.
Logged user has access to the protected area of the site. This script includes setup module.
|
||
Example 4. | - | Simple Blog |
This simple blog site demonstrates some advanced features of the framework, it inludes: setup
and login modules, work with database and web forms, CRUD operations, form validation, etc. In
administration area you could configure blog settings, author profile info, edit blog categories,
create and manage your posts. On the Front-End visitors can see last the posts, sorted by
categories or date of posting.
|
||
Example 5. | - | Simple CMS |
This simple CMS site demonstrates some advanced features of the framework like: setup
and login modules, advanced widgets, work with database and web forms, CRUD operations, form
validation, etc. In administration area you could configure all major CMS settings, admin
profile info, edit site categories, create and manage pages. On the Front-End visitors can
see last the menu and pages. This script may be used as a basis for creating your own advanced
application.
|