Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.
8
votes
1answer
323 views
Large Zend_Db query
Is there a better way to accomplish the following?
/**
* Performs an access check given a user.
*
* @param Cas_Acl_Sid $user The user or SID being checked.
* @param Cas_Acl_Privilege $privilege ...
3
votes
2answers
187 views
Zend_Application: Should all this logic be in the boostrapper?
Consider the following bootstrapper:
<?php
/**
* Zend_Application Bootstrapper
*
* @copyright 2011 Case Western Reserve University, College of Arts and Sciences
* @author Billy O'Neal III ...
3
votes
2answers
66 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 ...
3
votes
1answer
629 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
1answer
456 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 ...
3
votes
0answers
846 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.
class Model_Member extends App_Model_Model
{
protected $_data = array(
'ID' ...
2
votes
3answers
151 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:
$errors = $form->getMessages();
$msg = '';
foreach ($errors as $error)
{
foreach ($error as $err)
{
$msg .= ...
2
votes
1answer
198 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. ...
2
votes
1answer
75 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 code. My coworkers also complain often ...
2
votes
0answers
19 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 (mapToInternal, mapToExternal) to remove ...
1
vote
1answer
171 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 ...
1
vote
1answer
135 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 ...
1
vote
0answers
32 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
private function Manufactures(
$Condition = array(),
...
1
vote
0answers
433 views
Cubique - datagrid for Zend Framework and jQuery
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 ...