Re: [fw-general] Implementing complex Views with ZF

2007-04-30 Thread frederic wolf
Hi, you should have a look here, it's worth reading it about complex views and ZF. regards, fred

Re: [fw-general] How to return a file directly by an action

2007-04-18 Thread frederic wolf
Mauro Casula a écrit : Hi all, I have an action that make a mysql database backup in this way: public function backupDatabaseAction() { $db = Zend::registry('db'); $view = Zend::registry('view'); $config = Zend::registry('config'); $session

Re: [fw-general] Action-Rewriting

2007-04-06 Thread frederic wolf
Kai Meder a écrit : Hello, everybody knows the form-POSTing problem if you hit the back- or refresh-button: the page has expired bla bla... i want to implement two methods: editAction(): display form _editAction(): process form and http-redirect back to editAction() however, it seems that

Re: [fw-general] Re: Forwarding - Redirecting

2007-04-02 Thread frederic wolf
Matthew Weier O'Phinney a écrit : -- Joshua Ross [EMAIL PROTECTED] wrote (on Monday, 02 April 2007, 04:04 PM -0400): I am also curious about this. In order to separate logic in my actions I forward when I have post data. My initial thinking was that redirect sends and recieves some data

Re: [fw-general] Controller URL question

2007-03-30 Thread frederic wolf
Fábio T. da Costa a écrit : My directory structure: application/ albuns/ controllers/ IndexController.php (named Albuns_IndexController.php) models/ views/ My bootstrap file: $frontController-setControllerDirectory(array( 'default' =

Re: [fw-general] Zend_view or Smarty?

2007-03-29 Thread frederic wolf
Shekar C Reddy a écrit : For the most performance, the one with the least overhead. Although Smarty offers several features and does a nice caching, the overhead of its huge libraries cannot simply be overlooked. Try Template lite, it offers almost the same features and does a nice caching

Re: [fw-general] Controller and View Question

2007-03-25 Thread frederic wolf
Matthew Weier O'Phinney a écrit : -- Ralph Schindler [EMAIL PROTECTED] wrote (on Sunday, 25 March 2007, 09:37 AM -0500): I am curious how everyone implements common headers and footers within a given application. As I see it there are two methods: a) include the header and footer in