I just asked a question ( Templates In Kohana 3.1 ) about templates and now I know that I should use Kostache. It's a module for the Mustache template language.

Anyway, I just enabled Kostache module for my Kohana 3.1 and all works. It's installed correctly! What to do next? How to use it?

Where should I put my views now? What my controller should extend? How to assign variable? How to make header, footer etc. for views?

Maybe there are step to step guide for it? This and this won't help me a lot...

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Where should I put my views now?

View classes contain logic for your templates and by convention should be stored in classes/view/{template name}.php

Templates contain your HTML and should be stored in the templates directory in the root of your module, e.g. templates/login.mustache

By default kostache will try and work out the location of the template based on your view class' name.

If your view class is called View_Admin_Login then kostache will look for templates/admin/login.mustache

What my controller should extend?

You do not need to extend any special controllers, the normal Controller will work fine as a base.

How to assign variable

Controller:

$view = new View_Admin_Login;

$view->message = 'Hello';
$this->response->body($view->render());

Template:

{{message}}

Of course, any methods or variables you declare in your view class will also be available in the template. If there is a class variable and method with the same name then the method will always take precedence over the variable.

How to make header, footer etc. for views

It will help if you read the kostache guide. The idea is that your views extend Kostache_Layout, see also the layout template

link|improve this answer
That was easier than I thought... =] – daGrevis Jun 6 '11 at 7:12
feedback

There's lots of demos and examples in both of the repositories that you said won't help you.

link|improve this answer
1  
a step by step guide is the best way to get something work. "lots" of samples sounds like garbage sometimes and do not help at all. A clean sample helps a lot. Anyway thanks for the plugin, the idea is good to separate logic from the template. now I only need to learn how to use it. – B4NZ41 Aug 5 '11 at 19:07
1  
I spent over a day trying to get Kostache_Layout to work and wasn't able to. I finally found ddrake's kohana_demo on github which happens to use Kostache. It was monumentally helpful. github.com/ddrake/kohana_demo – Cory Mawhorter Mar 27 at 1:02
The ddrake repo was helpful (thanks), also found zombor's Vendo app (github.com/vendo/vendo), which is helpful too. – timborden Apr 24 at 20:46
feedback

Your Answer

 
or
required, but never shown

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