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

Reply via email to