"I think(?) that the solution you are describing would require me to
make both a model and a controller for each static page."

This controller doesn't require any Models:

class BoilerplatesController extends AppController {
    var $uses = array();  // setting it as a blank array means no
models are needed

    function view() {
        $this->layout = 'plain_jane';
    }
}


Now you don't need a model for that controller.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to