использую
www.yiiframework.com/extension/bootstrap, админка нужна на бустрапе, а на фронте хочу использовать
foundation.zurb.com, как отключить подключения стилей bootstrapa .Админка лежит в modules.?
'components'=>array(
'bootstrap' => array(
'class' => 'ext.bootstrap.components.Bootstrap',
'responsiveCss' => false,
),
),
'modules' => array(
'admin'=> array(
'modules' => array(
'user'=>array(
# encrypting method (php hash function)
'hash' => 'md5',
# send activation email
'sendActivationMail' => true,
# allow access for non-activated users
'loginNotActiv' => false,
# activate user on registration (only sendActivationMail = false)
'activeAfterRegister' => false,
# automatically login from registration
'autoLogin' => true,
# registration path
'registrationUrl' => array('/admin/user/registration'),
# recovery password path
'recoveryUrl' => array('/admin/user/recovery/recovery'),
# login form path
'loginUrl' => array('/admin/user/login'),
# page after login
'returnUrl' => array('/admin'),
# page after logout
'returnLogoutUrl' => array('/admin/user/login'),
#use bootstrap style?
'withBootstrap' => true,
),
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'1111',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('1.1.1.1'),
'generatorPaths'=>array(
// uncomment to use the twitter bootstrap generator
'ext.bootstrap.gii',
//'ext.giix-core', // giix generators
),
),
)
),
),