Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.
0
votes
0answers
63 views
Zend Framework and Doctrine 2 - are my unit tests sufficient?
I'm quite new to Zend and unit testing in general. I have come up with a small application that uses Zend Framework 2 and Doctrine. It has only one model and controller and I want to run some unit ...
1
vote
1answer
1k views
Advice on Zend Framework 2 and Doctrine
I've just started looking at Zend Framework 2 and Doctrine ORM, with a view to possibly using it in one of my future products. So far I have a very simple application which allows the user to select ...
3
votes
2answers
138 views
Potential Problems with this templating technique
I like the way Zend Framework works it's views and I make extensive use of partials but every partial include results in it's own file system hit. As I'm building my own framework I thought I could do ...
4
votes
1answer
194 views
ZF2 Model Mapper
In the ZF2 model mapper, mappings are quite often duplicated in the original mapping class & other mapping classes.
I am using a static mapping methods (...
1
vote
0answers
46 views
Help with Zend function optimization
I'm new Zendframework. Can you help to optimize this Model function, witch get from Db list of Manufactures with some conditions
...
1
vote
1answer
169 views
Mongodb Post/Comment use case
I am trying to learn mongodb and decided to build a simple blog application using Zend Framework and Mongodb (using Shanty for ZF https://github.com/coen-hyde/Shanty-Mongo
I have the following ...
2
votes
1answer
371 views
Help with Zend Framework getAction method
I am new to MVC and Zend, so I have little idea what I am doing at the moment, but here is my question.
The following code is my get method for an API I am attempting to build in order to learn both. ...
1
vote
0answers
608 views
Cubique - datagrid for Zend Framework and jQuery [closed]
Some time ago I have started a new open source project "Cubique". It's a datagrid for Zend Framework and jQuery. Currently this project has 120 commits (unfortunately all from me). Can my code and ...
2
votes
1answer
80 views
How to shorten long code but still keep in the philosphy of Zend framework
I have been wondering this for a while. Take this example:
<?= Zend_Registry::get('translate')->_('translate me!');
I have my views cluttured with such ...
3
votes
1answer
727 views
Zend form parameters - how to change after instanciated
I have a form that I need to resubmit to the action if a checkbox is TRUE. This is to facilitate chained select boxes with javascript turned off.
Ideally I would instanciate the form object at the ...
1
vote
1answer
236 views
Browser freeze - How to handle or optimize 50,000 rows in one HTML select element more than several times?
I have an increasing table which already has records of 50,000+.
So in a combo box I have to load it, so that it shows which one is selected and its a main record which need to be selected and based ...
5
votes
1answer
1k views
Using ZF2 Event manager to save a model
I have been reading about ZF2 EventManager for some time now and I wonder what you'd think about this approach.
...
2
votes
3answers
199 views
How can I improve this code by reducing foreach?
I have a piece of code that get errors from form and display to view:
...
3
votes
1answer
788 views
Zend Bootstrap code review
I've been working on putting a new app up against Zend. In my admin section, I want the nav links to only show if the user has rights to see the page. So I set up some Acls. But this doesn't seem like ...
3
votes
2answers
195 views
Zend_Application: Should all this logic be in the boostrapper?
Consider the following bootstrapper:
...
8
votes
1answer
369 views