Tag Archives: OOP

ImagePlane and some simple OOP designs

At Net Perspective we created an image editor in flash that we just released for sale called ImagePlane.
While ImagePlane has already been creatively introduced and documented quite thoroughly, I wanted to go over some decisions concerning the PHP demo.
Currently ImagePlane posts saved data to URL via the HTTP POST method. Currently ImagePlane posts the entire [...]

OO Design and PHP

I was helping a coworker the other day with some object oriented design issues in PHP and thought it would be great to share with the general PHP community as the general PHP community seems to lack in good OOP skills.
The task, which will be detailed later when we release it, boiled down to having [...]

Singleton-Factory Hybrids FTW

Slowly but surely my framework is coming off the ground. I decided to adopt a singleton design pattern for my Cache, Template, and possibly any other engines I might have. Originally my design started as a factory, however it is now somewhat of a hybrid as there is a ::load() function that loads arbitrary classes [...]