Re: app function

2010-02-04 Thread Dr. Loboto
@googlegroups.com [mailto:cake-...@googlegroups.com] On Behalf Of Miles J Sent: February-04-10 3:39 AM To: CakePHP Subject: Re: app function You must have the model Link defined and loaded before you run your navigation method. On Feb 3, 9:38 pm, Dave make.cake.b...@gmail.com wrote: How do i run

app function

2010-02-03 Thread Dave
How do i run a function from app controller? in app_controller i have in beforeFilter { $this-buildNavigations(); } function buildNavigations() { $links = $this-Link-find('list'); //$links = $this-find('list'); } Resilts in: Undefined property: PagesController::$Link I

Re: app function

2010-02-03 Thread Miles J
You must have the model Link defined and loaded before you run your navigation method. On Feb 3, 9:38 pm, Dave make.cake.b...@gmail.com wrote: How do i run a function from app controller? in app_controller i have  in beforeFilter { $this-buildNavigations(); } function buildNavigations()  

RE: app function

2010-02-03 Thread Dave
I tried using App Import model set up but got the same error message. Is that what you mean? -Original Message- From: cake-php@googlegroups.com [mailto:cake-...@googlegroups.com] On Behalf Of Miles J Sent: February-04-10 3:39 AM To: CakePHP Subject: Re: app function You must have