From twig-project.org
Fast: Twig compiles templates down to plain optimized PHP code. The overhead compared to regular PHP code was reduced to the very minimum.
Secure: Twig has a sandbox mode to evaluate untrusted template code. This allows Twig to be used as a templating language for applications where users may modify the template design.
Flexible: Twig is powered by a flexible lexer and parser. This allows the developer to define its own custom tags and filters, and create its own DSL.
Credit goes to Jonathan Geiger and John Heathco for creating the original modules. This fork contains the following improvements.
git submodule add https://ThePixelDeveloper@github.com/ThePixelDeveloper/kohana-twig.git modules/twig
cd modules/twig && git submodule update --init
Controller
Pretty similar to using the Controller_Template class.
class Controller_Example extends Controller
{
// Template names are generated automatically if not specified. So this
// action would map to: example/index.html
public function action_index()
{
$this->variable = "Hello World";
}
}
Either file a bug report or try an alternative project: