A framework created by Zend
1
vote
0answers
61 views
Zend 'Page Tile' view helper
I've created a ZF2 view helper PageTitle (extending Zend\View\Helper\AbstractHelper). As the name of the helper suggests , it is responsible for rendering the page title for each action view script.
...
0
votes
0answers
136 views
What is the disadvantage of using abstract class as a database connectivity in zend framework 2 instead of service locator
If I use database by creating adapter with drivers, initialize it in some abstract class and extend that abstract class to required model. Then use simple query statement. Like this:
namespace ...
2
votes
1answer
244 views
How to find classes that use certain DB tables
Problem:
I'm asked to prepare a document where all our DB tables are listed and I'm supposed to list all Controllers that uses these DB tables for read and another list for Controllers that do write ...
0
votes
1answer
204 views
Zend Framework 2 - Keeping all the models and mappers in Application module?
I am in process of planning web application by following the best practices and approaches of software development. I am building this application using zend framework 2 and going through its ...
0
votes
0answers
157 views
Model design used in Zend Framework 1.8 Web application development
I am currently reading Zend Framework 1.8 web application development by Keith Pope. In this book an application called storefront which is a shopping cart is being built. But I am not able to ...
5
votes
1answer
855 views
Difference between Zend Framework & Zend Server?
The title tells everything about my question but still let me elaborate to clarify : I know very well about the ZEND Framework but what about the Zend server?
Does it work like Apache server or ...
-3
votes
1answer
218 views
PHP certification [duplicate]
I am in the middle of a computer science conversion masters and am trying to go down the php route(with CSS/javascript/HTML/ thrown in).I have a month off in the summer and am thinking of doing the ...
1
vote
3answers
365 views
Unit-testing functions without business logic (only checks) [duplicate]
My team is trying to find out the best way to test one of our components; the main scope is to check if the user/actor has the right to complete the operation requested. The component is formed by ...
6
votes
3answers
315 views
Why does Zend discourage “floating functions”?
Zend's Coding Standard Naming Convention says
Functions in the global scope (a.k.a "floating functions") are permitted but discouraged in most cases. Consider wrapping these functions in a static ...
3
votes
1answer
756 views
Calling MSSQL stored procedure from Zend Controller ? Any other approaches?
MSSQL and DB, Zend as PHP Framework,
I am using this way to call SP with I/P Parameters and to get O/p Parameters.
It seems I am writing SQL code in PHP.
Any other good approaches?
$str1 = ...
0
votes
1answer
134 views
Zend Framework View Helper Composition
So I'm reviewing a piece of code that is a perfect candidate to be abstracted away into a view helper. However at the moment, the piece of code uses two other view helpers to get the final display.
...
3
votes
3answers
324 views
Where should libraries be placed, in windows?
I have just moved from Linux to Windows, and I have to use the Zend Framework library. Where should the library be placed?
Directly on C drive
Create a lib folder like C:/lib/
Create a lib folder ...
1
vote
3answers
425 views
PHP common uses for the Command Line
I started with PHP a little while ago. I've been doing a lot of tutorials, practice sites, etc. and it's going great.
One thing I like about PHP is how easy it is to get started (downloading WAMP and ...
1
vote
3answers
7k views
Learning Zend Framework 1 or 2? [closed]
I have programmed for a few years in php and now I'm going to learn zend framwork.
Zend is very popular and there are a lot of tutorials, books and documentation out there. But I saw in the last ...
14
votes
7answers
907 views
How do you keep track of large projects?
When dealing with a project that has many different files, I always seem to loose track of how the parts interact with one another. I've never really had much of a problem understanding smaller ...
25
votes
7answers
14k views
Why is Zend Framework so complicated?
I am web developer and have experience of developing several web applications in PHP. I have an idea of developing a product for myself and decided to use a MVC based framework because I really like ...
1
vote
2answers
327 views
Why should I use Zend_Application?
I've been working on a Zend Framework application which currently does a bunch of things through Zend Application and a few resource plugins written for it.
However, looking at this codebase now, it ...
3
votes
3answers
832 views
Is anyone here Zend certified? Do they recommend it?
For the amount of web developer job interviews I've been to, I'm somewhat surprised that no one has brought up Zend certification. Has anyone ever been certified before, or is it a waste of ...
9
votes
1answer
1k views
Multiple Zend application code organisation
For the past year I have been working on a series of applications all based on the Zend framework and centered on a complex business logic that all applications must have access to even if they don't ...
1
vote
2answers
284 views
Could I learn more about programming from deconstructing drupal rather than continuing with ZF?
When I was deciding how to go about learning to design PHP web applications, it made sense to sort of shoot toward the middle and go with Zend Framework so that I could be closer to the lower level, ...
4
votes
3answers
200 views
career development strategy for complementing 0+ years of OO PHP
I started programming in PHP sometime before last Christmas. Before that, I had done some development with Access/VBA (1-2 years). I have a BA in Art History and a masters in Music Composition. I've ...
1
vote
2answers
295 views
git/svn Hooks for PHP/Zend Projects
just because i think we are not using the full potential of all possibilites here yet:
What Pre/Post Commit Hooks (i.e. PHPUnit, PHPDoc) do you people use on your Team Git/SVN Servers?
By now we do ...
1
vote
3answers
378 views
Getting start with Zend PHP framwork [duplicate]
I've been working with PHP for couple of months now. Learning online, copy paste some code from online tutorials etc.
One major problem now is there are many unclean/unstable/unsecure/bad practice ...
2
votes
1answer
768 views
What does Symfony Framework offer that Zend Framework does not?
I have professionally working with Zend Framework for about a year. No major complaints. With some modifications, it has done a good job. I'm beginning to work on a side project where I want to ...
53
votes
12answers
2k views
How do you control code quality on your team? [closed]
Here is my situation. After almost 2 years I was able to convince my boss to use TDD, version control, coding standards for the entire team and a MVC framework for our web projects.
I was finally ...
0
votes
3answers
419 views
Need recommendation for transferring ASP.NET MVC skills to PHP [closed]
I am looking to translate my skills in .NET to PHP - specifically in regards to ASP.NET MVC. At work I am currently using .NET MVC 2.0 on a variety of projects and thoroughly enjoy the platform. ...
3
votes
2answers
296 views
Zend Framework: Should I worry about the details of the MVC implementation?
I've been studying Zend Framework's MVC for a few weeks, and am having a really, really difficult time with it. I'm new to OOP, but I understand OOP in PHP without too much difficulty; I understand ...
4
votes
1answer
222 views
PHP framework plunge
I am about to take plunge into PHP frameworks and my weapon of choice is kohona.
I have a reasonable amount of OO experince with java. And my javaScript, jQuery, PhP and html/CSS skills are passable. ...
8
votes
1answer
2k views
What is Zend's relationship with PHP?
What exactly is Zend's relationship to PHP? I don't mean the framework but the company itself. Are they the gatekeepers or guardians of sort?
I've just been reading up on PHP, and other than ...
1
vote
3answers
408 views
Dependency Injection and method signatures
I've been using YADIF (yet another dependency injection framework) in a PHP/Zend app I'm working on to handle dependencies. This has achieved some notable benefits in terms of testing and decoupling ...
0
votes
3answers
354 views
Familiarizing with the Zend Framework in one week
You are conversant with the ZF?
How would you go about getting familiar with it in one week?
What would be your suggested schedule?
5
votes
6answers
577 views
How do you know when to split an object method into 2 or more other methods?
I know this is a very basic question, but I sometimes find myself struggling to figure out when to split a single object method into multiple methods. For example, I am trying to set up an ACL using ...
2
votes
4answers
534 views
Does a PHP programmer need ZCE certification?
I want to know if PHP programmers are validated with their Zend Certified Engineer certification. Around me some of them are saying it is very useful, some of them say no. Please clear my mind. Thanks ...
2
votes
3answers
1k views
Zend PHP 5.3 certification [closed]
I'm planning to give the Zend PHP 5.3 certification. Any suggestions on how to prepare for it? Also, what kind of questions can I expect? Can anyone remember what they were asked?
3
votes
8answers
1k views
If you were to build an app like Craigslist, would use an off-the-shelf framework or write your own?
Title is the question.
And why I am asking is because from what I read about most PHP frameworks (e.g. Code Igniter, Kohana, Cake, Zend) is that they're ether too complex, or are designed mostly for ...
1
vote
1answer
156 views
Database strategy for connected but disparate applications
I'm working on a series of inter-related but separate web applications, all situated on the same host:
Super Admin
|
---Site Network Admin
| |
| ---Site
| |
| ---Site
| |
| ---Site
|
...