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
28 views
Zend Framework 3 Ajax Form Validation - contact form
I would like to present to you my code vision of Ajax form validation in Zend Framework 3. I am a beginner in Zend Framework and jQuery too, so I don't know that my solution is good and acceptable.
...
1
vote
0answers
20 views
Zend Framework Form Validation Example
I am beginner in Zend Framework 3 and I want to hear your opinions about code that I wrote.
I don't know how exactly I can connect forms, and validators together that the code will be quite nice and ...
0
votes
0answers
31 views
Render HTML/JS with Values for jQuery Modal Boxes
I have some code that I use to render the template + values for the HTML that makes up jQuery Modal Boxes in my code.
...
0
votes
1answer
87 views
Use header application/x-download
Zend framework 1. Physically, the file does not exist, it is created based on database.
Okay so use header?
...
2
votes
0answers
128 views
ZF1 with Monolog
I am currently working in a Zend Framework 1 project. In the project we needed a sort of logging module, and Monolog was requested.
Now since I'm quite a beginner with PHP, I'd like to know if I'm ...
2
votes
0answers
46 views
Is my controller for editing information about videos doing too much?
My project uses Zend Framework 2.
I'm trying to determine if I am doing too much in my controller as a rule for my development. I have built my controllers like this for a while and haven't run into ...
4
votes
0answers
180 views
Zf2 and doctrine model implementation
I've implemented for the first time Doctrine-ORM on my SOAP server application; can you tell me if I could optimize some of the written ORM-related code?
More specifically, is it a good practice to ...
2
votes
1answer
121 views
Does my controller code look good?
I read many times about controller code mustn't be too complicated and so on. I was developing new features in my simple project. I added a function, which allow users to get access to news only in ...
1
vote
0answers
252 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 ...
2
votes
1answer
4k 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
244 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
296 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 (...
3
votes
0answers
100 views
Getting a list of manufacturers from a database
I'm new to Zend Framework. Can you help me optimize this function, which gets a list of Manufactures with some conditions from a database?
...
1
vote
1answer
253 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).
I have the following document for Post
...
3
votes
1answer
745 views
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. ...
0
votes
1answer
97 views
Fetching translated strings, keeping in the philosophy of Zend framework [closed]
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
993 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
713 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
2k 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
370 views
Collecting form errors to be displayed
I have a piece of code that get errors from form and display to view:
...
6
votes
1answer
2k views
Gmail contacts API connection
I created this class that connects to Gmail contacts, and enables you to add/edit/delete the contact.
I'm curious to see what others think of my code. If you see any areas for improvement, that ...
3
votes
1answer
999 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
202 views
Zend_Application bootstrapper
This seems a bit wrong because there's a lot of business logic going on inside the bootstrapper. Is there a better way to accomplish what's going on here?
...
8
votes
1answer
419 views