我似乎在Yii基本模板中配置Yiistrap时出现问题(我将其用作我网站的起点)。
我的目标是在NavBar中添加图标并使用图像文件作为NavVar中的品牌。似乎Yii的正常NavBar无法做到这一点作为"品牌'选项无法识别。
所以我在我的供应商目录中使用composer安装了YiiStrap。但后来在http://www.getyiistrap.com/site/started中说调整我的main.php文件(但这里不是一个)!
基本上,如何正确配置,以便我可以在导航栏中添加额外的功能?
亲切的问候
我使用的代码(作曲家):
Downloaded Yiistrap in /basic/vendor/2amigos/yiistrap
Config目录包含以下文件:
console.php
db.php
main.php
params.php
web.php
main.php的代码是
<?php
// main configuration
return array(
// path aliases
'aliases' => array(
'bootstrap' => realpath(__DIR__ . '/vendor/2amigos/yiistrap'), // change this if necessary
),
// import paths
'import' => array(
'bootstrap.helpers.TbHtml',
),
// application modules
'modules' => array(
'gii' => array(
'generatorPaths' => array('bootstrap.gii'),
),
),
// application components
'components' => array(
'bootstrap' => array(
'class' => 'bootstrap.components.TbApi',
),
),
);