Thule - 0.9.6
  • Welcome
  • Introduction
  • - MVC(Model-View-Controller)
    - Architecture of Framework
    - Flow Chart of Application
    - Services In One Server
    - Developing Guide
    - Features
  • Installation
  • Getting Started
  • - Direct Access HTTP
    - Router Access HTTP
    - Router Direct Access HTTP
    - Reserved Function
    - Convention
    - Bootstrap
    - Pack Javascript , CSS
  • Basic Modules
  • - Model
    - View
    - Controller
  • Libraries
  • - Router
    - Config
    - Response
    - Request
    - Database
    - Query
    - Cache
    - Debug
    - Log
    - Unit Test
    - Registry
    - Profile
  • Helper
  • - Auth
    - Calendar
    - Date
    - Error page
    - Email
    - Form
    - GeoIP
    - Google
    - Html Element
    - Html
    - Http
    - I18n
    - Image
    - Json
    - Jquery
    - Login
    - Layout
    - Locale
    - PHP to Javascript
    - Paging
    - Payflow
    - Soap
    - Text
    - Table
    - Uri
    - Upload
    - Validation
  • Plugins
  • - Smarty Template Engine
  • History
  • Home > Flow Chart of Application

    Flow Chart


    This framework has designed for maximum performance and large system.
    Performance is almost 70% pure PHP without Framework and making query of database is apparently easy for DBA(Database Administrator).
    You can have several services in one server.It means that if you want more than one service in a server, it's easy to add the other service.

    Flow..


    1.Gate.php initialize data for controller and models , views as a entry controller
    2.The Router is a option for HTTP Reqeust. If you don't need router ,HTTP request should access directly to filter.It makes performacne maximize.
    3.The Filter executes the rule for security made by you.
    4.The Controller loads the models ,libraries ,core modules and loads the response from models to queue.
    5.View displays the page with data from generated by repsonse .