| « Previous Topic | Table of Contents | Next Topic » |
The Opendelight framework encompasses multi-tier architecture of web application, and is based on several design patterns including most notably Model-View-Controller (MVC). Currently, opendelight uses jQuery javascript framework and jQuery UI CSS framework with appropriate extensions for achieving UI rendering, effects, asset management, user interactions and functions at client-side (however, you are free to use any other client-side framework).
An instance of application at client-side invokes instance at server-side through HTTP request which is responsible for processing business logic of the application, and in turn, provides data back to client-side instance for further actions (rendering, effects, asset management, user interactions and functions).

(Illustration of Opendelight Framework Architecture)
Every HTTP request is received by a Controller at the server-side, and each HTTP request is defined uniquely by the Event ID (through $_REQUEST[ID] parameter) that is passed from the client-side application instance. Based on Event ID, the Controller validates the HTTP request and the user sending the request.
The framework provided an in-built access control scheme based on user roles, called Role Based Access Control (RBAC) scheme, that allows access to application by its users depending on their roles assigned to. The basic concept of the scheme lies in treating application and user accessing the application as two objects, and basing their interaction through user's role associated with application instance.

(Illustration of Role-Based Access Control Scheme)
Upon successful validation, parameters collected from HTTP request are passed to BL objects to execute the request. Model (consisting of classes and independent scripts - to give life to PHP old-timers : ) ) carries out BL processing, and returns resulting data in the form of arrays. After successful interaction with Model, Controller passes the available resulting data to View for composing the UI, if required. View creates the final client-side code (all in XHTML, JavaScript, CSS, etc.) and then sends the resulting code (or data) to Controller. Finally, Controller sends the final data to client-side application instance completing the server-side process of data-flow.
| « Previous Topic | Table of Contents | Next Topic » |
(The entire online documentation is available in a single PDF for download and print.)
Setup PHP Development Environment on Windows 7 PC
August 17th, 2010
A Feature Article on Opendelight Published in php|architect
July 31st, 2010
Opendelight 1.1.2 Released with Bug Fixes to IDE
May 1st, 2010
Opendelight 1.1 Released with Minor Bug Fixes
April 28th, 2010
Press Release of Opendelight Framework 1.0
April 26th, 2010