帅哥。
我希望这个问题不是转发。
我是Kohana的新手。我在其他人制作的系统中工作。
我需要了解如何设置主题,但我无法在这里找到任何内容,也不会谷歌。 我发现在某些系统中设置了一个名为theme的cookie。但我不知道在哪里设置这个cookie。
有人可以告诉你如何在Kohana设置主题吗?
谢谢大家,伙计。
JuanMatias
答案 0 :(得分:0)
Kohana是一个从头开始开发应用程序的框架 - 它没有任何主题,如Drupal或WordPress。如果您要查找的是模板,则可以使用Controller_Template
基类。只需让你的控制器扩展它:
class Controller_Extends extends Controller_Template
然后使用以下内容设置模板主体:
$this->template->content = $content;
最后,在application/views/template.php
:
<!-- Here goes the header -->
if (isset($content)) echo "<div id='content'>$content</div>";
<!-- Here goes the footer -->