I have a Cakephp project the controller has several different methods.

function Index()
function IndexAuthor()

And I want to use the same 'view' (or template, Index.ctp) for both of the methods of the control.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You're looking for Controller::render().

function IndexAuthor() {
    $this->render('index');
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.