[fw-general] Re: re[fw-general] using view scripts across controllers.

2009-06-10 Thread staar2
Themselves wrote: > > Hi guys, > > I have a number of view scripts that are cut and paste across almost all > of > my view directories, basically templates that hold code to load a > structural > html / tabs / etc. These files are almost all identical, so there is a > very > obvious case for

Re: [fw-general] CRUD and modularity

2009-06-09 Thread staar2
goes to /application/controllers - controller name will be moduleController example newsController, contains only view part (view action only) *model will be same for these controllers. So any suggestions or ideas ? staar2 wrote: > > I thought to use modular design and make some simple m

[fw-general] CRUD and modularity

2009-06-08 Thread staar2
I thought to use modular design and make some simple modules guestbook admin area comment area feedback polls news content managment But all these requires almost same CRUD functionality, forms are different database tables and presentation code. But mostly the code keeps to be same in controll

[fw-general] Zend Studio 6 phpUnit and Zend Framework

2008-04-18 Thread staar2
As the new feature of Zend Studio it has phpUnit Gui where you can simply click and it runs the tests. But i dont get it working with Zend Framework. Current tests structure is same as the normal one. Test code is taken mostly from here http://www.alexatnet.com/node/12 After running code get err

Re: [fw-general] Best way to load Zend_Form_Element_* classes

2008-04-08 Thread staar2
Mark Steudel-3 wrote: > > Hi All, > > > > I'm just using components of the Zend Framework in my application, and one > of those is Zend_Form which in my header file I'm loading like: > > > > Zend_Loader::loadClass('Zend_Form'); > > > > But when I go to instantiate a text element lik