Skip to content


Creating Obullo PHP5 MVC-SSC Framework Part5: Writing __autoloader; javascript and css manager, intelligible tag builder and using session class with SSC functions.

Alpha 4 version Core Changes: added internal javascript and css manager loader::css, loader::base_css, loader::base_js();,loader::js, loader::script();, loader::base_script(); Changed loader::base_library(); function as base. added __autoloader to User.php for loading automatically library, model and helper files changed directory structure , deprecated loader::view(, true) true boolean (fetch as string) and added loader::fetch(), loader::base_fetch(); functions. added tag builder to ...

Easyrest Beta Version 1.1 Released

1.1 version changes. function and class no param bug fixed. Download easyrest 1.1 beta from google code: http://code.google.com/p/easyrest/ How to use easyrest look at this article: http://develturk.com/2009/08/17/easyrest-rest-framework-10-released-client-and-server-library/

Creating a PHP5 MVC Framework part4: Integrating CI Active Record to Obullo PDO Class, Routing Impromevents and Advanced Loader Functions

Alpha 3 version Core Changes: - common.php register_base(); and register(); functions changed. - OB_DB_active_record class integrated to Obullo DB Class (added CRUD operations Insert, Update, Delete) - router works like this from now on : /directory/controller/method/params - /controllers directory structure completely changed - added /application/resources and /base/views directories - added new loader functions: ...

Writing a PHP5 MVC Framework Part3: Intregrating CI Router to Obullo and Learning SSC Pattern

Alpha 2 version Core Changes: - deprecated database pattern rewrited new loader::database() functionality - added get_config, register_base, register, register_static functions to common.php - added routes.php (config route file) to /application/config/ folder - added new functionality a Library Class like Model - added /extends folder and Ob_user.php (super static user class) - added Ob.php and SSC ...

New term in the PHP World: Introducing the MVC – SSC Pattern

SSC Pattern (Super Static Controllers): I guess SSC (Super Static Controllers) pattern a new term that i found in the php world. I used SSC (static methods) to control none static library functions in my mvc framework. The Goal of the SSC pattern to prevent the long writing style, we use it like ...