我是使用yii框架的新手。我没有太多时间彻底学习它。我找到了一个名为hebo的html5 web应用程序模板。但是我无法通过将该模板复制到yii文件夹来使其工作。
请任何人指导我将任何外部(不是使用yiic)html模板集成到yii中的步骤。
答案 0 :(得分:1)
创建一个新的yii项目
将hebo
文件夹复制到webroot/themes
,在配置文件中,您必须将参数theme
设置为hebo
这是我的一个项目中的一个例子:
return array(
'basePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..',
'name' => 'myProject',
'theme' => 'version_3',//so in webroot/themes I have a folder named "version_3"
'language' => 'fr',
WebRoot/themes/hebo/views
)