I used them before several months. Then I switched to Fuel. Then I switched back to Kohana.

Problem? I have forgot how to correctly use templates (with that I mean Controller_Template). There was tutorials on Kohana's docs, but now links seem to be broken.

Please remind me how to use them!

link|improve this question

Some time has passed, but one thing in your post is interesting for me. Why have you switched from Fuel to Kohana? – pim Aug 2 '11 at 10:11
feedback

2 Answers

up vote 1 down vote accepted

If you really want to use them, you have to extend Kohana_Template. Then you would set a public field '$template' to your view name, and then just do $this->template->foo = "foo" to set variables on the template

public class Controller_MyController extends Controller_Template
{
    public $template = "my_view";
    public function action_foo()
    {
        $this->template->foo = "foo"
    }
}

But the core developers discourage people to use it. You could better use some kind of template engine like Kostache to make up your templates.

link|improve this answer
just curious, why do they include it, if its usage is discouraged? – bumperbox Jun 5 '11 at 19:49
Because some people still use it I guess. Not sure though. – Ikke Jun 5 '11 at 19:50
Why is it discouraged? – Michael O'Loughlin Jun 7 '11 at 15:34
feedback
$template = 'mytemplate';

function action_index() {
      $template->content = new View("content");
      $template->content->title = "page title"; // depends on the fields in your view
}

this will require that the mytemplate.php and content.php view files exist

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.