11-29-2007, 03:58 AM
|
#2 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
One problem that immediately springs up is the fact that you haven't used any scopes on your functions. For instance, you've prefixed some functions, such as _query, with the underscore, which tends to be indicative of a private function by Zend Framework standards. However, no scope has been set.
The scopes consist of the following:
- Private: Only members in the same class has access.
- Protected: Only members of the same class and those extended have access.
- Public: Everybody has access (default)
I'll have myself a good read through tomorrow though and see what I can pick out. It does look like a good attempt nonetheless.
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|