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 ...
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 ...
Alpha version Changes:
- System directory renamed as Base
- Controller directory structure changed.All MVC files grouped by Controller Name.
- Loader class completely changed, some loader functions declared as static
we use loader class like this loader::database(), loader::library(), loader::helper()
- Added DB and DBFactory classes under the database folder.Added most known PDO functions.
- Added ...
What is the Easyrest?
Easyrest is a REST framework that contains client and server implementations.It has a easy structural data transfer unlike XML-RPC.Easyrest use a lot of pear packages and it has got custom apikey functionality.I think using the pear libraries is not a disadvantage because of you don't have to install required ...
What is the REST (Representational State Transfer) :
REST is a style of software architecture for distributed hypermedia systems such as the World Wide Web. The terms "representational state transfer" and "REST" were introduced and defined in 2000 by the doctoral dissertation of Roy Fielding, It uses Hypertext Transfer Protocol (HTTP) specification versions ...