1

我在我的 Symfony 项目中使用 MopaBootstrapBundle。

我当前在 config.yml 中的配置是:

mopa_bootstrap:
    navbar: ~

如何使用 config.yml 添加逆属性以使导航栏变暗?

4

2 回答 2

1

好吧,您应该创建一个服务来做到这一点。

//服务.yml

services:
    mopa_bootstrap.example.navbar:
        class: %mopa_bootstrap.navbar.generic%
        arguments:
            # first argument: a named array of menues:
            - { leftmenu: @mopa_bootstrap.examplemenu=, rightmenu: @mopa_bootstrap.exampledropdown= }
            # second argument: a named array of FormType Classes
            - { searchform: Mopa\Bundle\BootstrapSandboxBundle\Form\Type\ExampleSearchFormType }
            # third argument: a named array of options
            - { title: "BootstrapSandbox", titleRoute: "mopa_bootstrap_welcome", fixedTop: true, isFluid: false, inverse: true }
        tags:
            # The alias is used to retrieve the navbar in templates
            - { name: mopa_bootstrap.navbar, alias: sandboxFrontendNavbar }

您可以在第三个参数中看到反向选项。

仅供参考: https ://github.com/phiamo/MopaBootstrapSandboxBundle/blob/master/Resources/config/examples/example_navbar.yml

于 2013-03-31T13:34:36.190 回答
0

尝试:

mopa_bootstrap:
    navbar:
        inverse: true

参见:https ://github.com/phiamo/MopaBootstrapBundle/blob/master/Resources/views/Navbar/navbar.html.twig

于 2013-03-31T13:14:36.480 回答