Hi Peter,
I've done a similar thing, I used the module setup
http://framework.zend.com/manual/en/zend.controller.modular.html
and created a module called cms, so I had
/controllers/IndexController.php
/controllers/NewsController.php
...
/cms/controllers/IndexController.php
/cms/controllers/NewsController.php
...
Jude A.
On Mon, 12 Nov 2007 05:07:41 +0900, Peter Lauri <[EMAIL PROTECTED]>
wrote:
Hi,
I am familiar with the basics how ZF is working when it comes to
Controller/Action etc. For example I will have:
faq
faq/show/id/1
...
But, for the admin section I want:
admin/faq/listall
admin/faq/add
admin/faq/delete/id/2
admin/faq/edit/id/5
..
How should I do that. Do I need to put an extra index.php in the
subfolder admin and do as normal? Or any other commonly used approach?
/Peter