One quick solution: can the method go in your model? It's much easier/more 
efficient to call it from there.

Jeremy Burns
Class Outfit

[email protected]
http://www.classoutfit.com

On 17 Sep 2010, at 16:30, Mariano C. wrote:

> I have Book's controller
> <?php
> class BooksController extends AppController {
> 
>       var $name = 'Books';
>       var $uses = array('Book', 'Author');
> 
>        function aMethod()
>        {
>               $this->newAuthor('Stephen King'); // call newAuthor()
>        }
> 
>        function newAuthor( $name ) {// method's logic }
> }
> ?>
> 
> This work perfectly but function newAuthor() is better placed inside
> Author's controller. But when I put it inside Author's controller I
> don't know how to call it when I need inside aMethod()
> 
> What's the correct syntax?
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
> 
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" 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

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" 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

Reply via email to