My 2 cents:
Make model_controller.php in the same level as app_controller.php
make this model_controller declaration:
class ModelController extends Controller {}
and this app_controller declaration:
class AppController extends ModelController {}This way, you won't have to change any controller in your application. Regards, - LS On Aug 1, 4:11 pm, francky06l <[EMAIL PROTECTED]> wrote: > I think you can place your module_controller.php file at same level of > app_controller.php. This should work without problem having you > ModuleController extending AppController and other controller > extending ModuleController. > > On Aug 1, 5:54 pm, safl <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I would like to have different controller types that are extends of > > the basic AppController. > > > Let's say i got "class ModuleController extends AppController" where > > should i then place my "module_controller.php" so my controllers in / > > controllers be able to: "class WhateverController extends > > ModuleController" instead of "class WhateverController extends > > AppController"? > > And without messing with the Cake installation. > > > The thing is I got a bunch of logic in AppController in beforeFilter > > and the use of a couple of components and stuff like that but I only > > wan't a subset of my controllers in /controller to inherit these > > properties. > > > And other controllers will very soon like to inherit some other > > properties of some other controller type. > > > regards, > > Simon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---
