Re: AppController's beforeFilter question

2006-10-24 Thread fr3nch13
i knew this, i just thought cake may have done it differently considering it was the AppController and beforeFilter was a 'special' method. nate wrote: > See here: > > http://www.php.net/manual/en/keyword.parent.php --~--~-~--~~~---~--~~ You received this messag

Re: AppController's beforeFilter question

2006-10-24 Thread Brian French
Touché... I had the below code code. class AppController extends Controller {     function beforeFilter()     {         echo "AppController::BeforeFilter";     } } class ReviselogsController extends AppController {     function beforeFilter()     {         echo "ReviselogsController::BeforeF

Re: AppController's beforeFilter question

2006-10-24 Thread nate
See here: http://www.php.net/manual/en/keyword.parent.php --~--~-~--~~~---~--~~ 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 gr

Re: AppController's beforeFilter question

2006-10-24 Thread Samuel DeVore
you should try a test, and let us know On 10/24/06, Brian French <[EMAIL PROTECTED]> wrote: > > When i have an AppController set with the method beforeFilter as well as > another normal controller (TasksController). > > Does the beforeFilter in the TasksController: > a. overwrite the AppController

AppController's beforeFilter question

2006-10-24 Thread Brian French
When i have an AppController set with the method beforeFilter as well as another normal controller (TasksController). Does the beforeFilter in the TasksController: a. overwrite the AppController's beforeFilter b. run before the AppController's beforeFilter c. run after the AppController's before