Re: app function

2010-02-04 Thread Dr. Loboto
ge- > 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 the model Link defined and loaded before you run your > navigation method. > &

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 the

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" wrote: > How do i run a function from app controller? > > in app_controller i have  in beforeFilter { > $this->buildNavigations(); > > } > > function buildNavigations() >   { > >    $l

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 s