-1

伙计们。

我希望这个问题不是转发。

我是Kohana的新手。我正在使用其他人制作的系统。

我需要了解如何设置主题,但我在这里或谷歌都找不到任何东西。我发现在某些系统中设置了一个名为主题的 cookie。但我不知道在哪里设置这个cookie。

有人可以告诉如何在 Kohana 中设置主题吗?

谢谢大家,伙计们。

胡安·马蒂亚斯

4

1 回答 1

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 -->
于 2012-03-24T09:35:57.713 回答