For FormFlow you can just use MopaBootstrap's templates instead of the ones given by the Bundles:
{% include 'CraueFormFlowBundle:FormFlow:stepField.html.twig' with {'formident': '#myform'}%}
where formident is used by jquery to bind the submit form handler to the "next" or "finish" button, instead of the first defined like in html it is This is mainly necessary if you have more than one form. It need to be the id or class of the form itself e.g.
<form id="myform" class="myformclass" ...>
{'formident': '.myformclass'}
or
{'formident': '#myform'}
For CraueFormFlowBundle version 2.* you can use:
{% include '@MopaBootstrap/Form/formflow_buttons.html.twig' %}
and
{% include '@MopaBootstrap/Form/formflow_stepList.html.twig' %}
For KnpPaginatorBundle use the following to override template:
# File: app/configs/parameters.yml
parameters:
knp_paginator.template.pagination: MopaBootstrapBundle:Pagination:sliding.html.twig
if you need to set e.g. a different class for the ul or want to change the default texts:
<?php
// set an array of custom parameters
$pagination->setCustomParameters(array(
'last_text' => 'very last item', # gets translated by the template
'pagination_class' => 'pagination-lg'
));
And to use the Paginator templates copy them to
```bash
mkdir -p app/Resources/Knp/Bundle/PaginatorBundle/views/Pagination/
cp vendor/bundles/Mopa/BootstrapBundle/Resources/views/Pagination/* app/Resources/Knp/Bundle/PaginatorBundle/views/Pagination/
For KnpMenu use the following parameter to make use of the menu template:
# File: app/configs/parameters.yml
parameters:
knp_menu.renderer.twig.template: @MopaBootstrap/Menumenu.html.twig
By using this template, you can make use of the icon
and icon_white
extra attributes.
The example shows the usage within a Navbar
, however it works with any knp_menu_render
in a Twig template.
<?php
# File: src/Acme/Bundle/AcmeDemoBundle/Menu/NavbarMenuBuilder.php
namespace Acme\Bundle\AcmeDemoBundle\Menu;
use Mopa\Bundle\BootstrapBundle\Navbar\AbstractNavbarMenuBuilder;
class NavbarMenuBuilder extends AbstractNavbarMenuBuilder
{
public function createMainMenu(Request $request)
{
$menu = $this->factory->createItem('root');
$menu->setCurrentUri($request->getRequestUri());
$menu->setChildrenAttribute('class', 'nav');
$dropdown = $this->createDropdownMenuItem($menu, 'Account');
$dropdown->addChild('Register', array(
'route' => 'register'
));
$this->addDivider($dropdown);
$dropdown->addChild('Login', array(
'route' => 'login_form',
'extras' => array(
'icon' => 'signin',
),
));
$dropdown->addChild('Login via Facebook', array(
'route' => 'login_facebook',
'extras' => array(
'icon' => 'facebook',
'icon_white' => true,
),
));
$dropdown->addChild('Login via Google+', array(
'route' => 'login_google',
'extras' => array(
'icon' => 'google-plus',
),
));
return $menu;
}
}