DISCONTINUED
This bundle integrates the features of the responsive framework Foundation, from ZURB (thanks guys), into Symfony by providing templates, Twig extensions, services and commands. You can quickly setup a responsive theme for an interface for your project. It will have the "look'n'feel", the responsiveness and the simplicity of Foundation.
BE AWARE: THIS BUNDLE WILL NOT ADD THE FOUNDATION FRAMEWORK BUT RATHER FEATURES FOR SYMFONY TO WORK WITH IT
Demo available here.
- Symfony 2.7+.
- jQuery 2+ a JavaScript library.
- Foundation 5+ an advanced responsive framework.
- Font Awesome 4+ which comes with 585+ icons.
This bundle will theme for you elements of :
- the KnpMenuBundle to manage menu or sidebar.
- the KpnPaginatorBundle for pagination.
- the WhiteOctoberPagerfantaBundle for pagination based on Pager Fanta.
composer require florianbelhomme/flob-foundation-bundle
Then, edit your app/AppKernel.php
and add:
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
...
new Flob\Bundle\FoundationBundle\FlobFoundationBundle(),
...
];
}
}
You now need to add the libraries to your project.
The easy way to do it (but there are other ways to do so):
<html>
<head>
...
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/css/normalize.min.css" type="text/css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/css/foundation.min.css" type="text/css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="{{ asset('bundles/flobfoundation/css/foundationtosymfony.css') }}" type="text/css" />
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
...
</head>
<body>
...
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/js/foundation.min.js"></script>
<script type="text/javascript" src="{{ asset('bundles/flobfoundation/js/foundationtosymfony.js') }}"></script>
</body>
</html>
Your project is ready!
This bundle does not theme any elements by default, in case you want to use Foundation on a specific form or bundle.
To automatically theme forms or other elements by default, go into the app/config/config.yml
and add at the end:
flob_foundation:
theme: { form: true, knp_menu: true, knp_paginator: true, pagerfanta: true }
If you want to do specific HTML markup that extends templates of this bundle:
- create your template in your bundle
- add
{% extends 'FlobFoundationBundle:Form:foundation_form_div_layout.html.twig' %}
at the top (the form template, for example) - edit the
app/config/config.yml
:
flob_foundation:
theme: { form: true, knp_menu: true, knp_paginator: true, pagerfanta: true }
template:
form: 'YourBundle:YourFolder:formtemplate.html.twig'
breadcrumb: 'YourBundle:YourFolder:breadcrumbtemplate.html.twig'
knp_menu: 'YourBundle:YourFolder:menutemplate.html.twig'
knp_paginator: 'YourBundle:YourFolder:paginatortemplate.html.twig'
pagerfanta: 'YourPagerFantaTemplate'
However instead of setting it in the configuration, you can theme specific elements using one of these methods:
{# Form #}
{% form_theme yourform 'FlobFoundationBundle:Form:foundation_form_div_layout.html.twig' %}
{# Menu #}
{{ knp_menu_render('yourmenu', {'template' : 'FlobFoundationBundle:Menu:foundation_knp_menu.html.twig'}) }}
{# Pagination with KNP paginator #}
{{ knp_pagination_render(yourpagination, 'FlobFoundationBundle:Pagination:foundation_sliding.html.twig') }}
{# Pagination with PagerFanta (through WhiteOctober bundle) #}
{{ pagerfanta(paginationFanta, 'foundation') }}
To create a top bar, just create your KNP Menu, add a route to the root element and set extra options:
$menu = $this->factory->createItem(
'My website',
[
'route' => 'homepage',
'extras' => ['menu_type' => 'topbar']
]
);
You can add an icon before, after or instead of the label. By default the icon will be added before the label. The icon must be the name of one of Font-Awesome, example : "fa-bell-o".
$menu->addChild(
"Entry",
[
'route' => 'route_entry',
'extras' => [
'icon' => 'fa-bell-o',
'icon_position' => 'no-label' # can be 'before', 'after' or 'no-label'
]
]
);
If you want a breadcrumb generated from a KNP Menu add this code in your template :
{{ flob_foundation_breadcrumb_render('yourknpmenu') }}
If you want a specific template :
{{ flob_foundation_breadcrumb_render('yourknpmenu', {'template' : 'YourBundle:YourFolder:breadcrumbtemplate.html.twig') }}
You can now use the slider in your forms.
The slider extend the number field type, so it has the same options. The additional options are :
- start : type: integer / default: 0 This specifies the starting point number.
- end : type: integer / default: 100 This specifies the highest number in the range.
- step : type: integer / default: 1 This specifies the cursor's incremental skip.
- vertical : type: boolean / default: false If true, displays the slider vertically instead of horizontally.
This is an example of the field :
$builder->add('My slider', 'slider', ['label' => 'Slider', 'start' => 10, 'end' => 20, 'step' => 2]);
You can now use the switch in your forms.
The switch extend the choice field type, so it have the same options. But you can't set the option "expanded" to false (cannot be a select).
This is an example of the field :
$builder->add('switch_radio', 'switch', ['label' => 'Switch (as radio)', 'choices' => [1 => 'Choice 1', 2 => 'Choice 2', 3 => 'Obi wan kenobi'], 'multiple' => false]);
You can now use button groups in your forms.
Button groups are button, grouped together by Foundation. This way they are rendered on the same line, instead of all on a different row.
This is an example of the field :
$builder->add(
'buttons',
'button_group',
[
'label' => 'Buttons group',
'buttons' => [
'back' => [
'type' => 'button',
'options' => [
'label' => 'Cancel',
'attr' => [
'class' => 'secondary',
],
],
],
'save' => [
'type' => 'submit',
'options' => [
'label' => 'Submit',
],
],
],
'attr' => [
'class' => 'right',
],
]
);
In the buttons
array, you define the buttons that need to be rendered. All the buttons should be of FormType ButtonType
.
For the ButtonType
, you cannot specify behavior in Symfony.
You can change the type to reset
, to render a button with type="reset"
, (a ResetType
) but cannot add links.
However, you have various options:
- add an
onClick
tag to theattr
array - add a class
link
, a tagdata-url
to theattr
array and let JavaScript handle it
A button bar is a group of button groups, perfect for situations where you want groups of actions that are all related to a similar element or page.
This is an (long :D) example of the field :
$builder->add(
'button_bar',
'button_bar',
[
'button_groups' => [
'button_group_first' => [
'label' => 'Buttons group',
'buttons' => [
'one' => [
'type' => 'submit',
'options' => [
'label' => 'one',
],
],
'two' => [
'type' => 'button',
'options' => [
'label' => 'two',
'attr' => [
'class' => 'success',
],
],
],
'three' => [
'type' => 'button',
'options' => [
'label' => 'three',
'attr' => [
'class' => 'alert',
],
],
],
],
'attr' => [
'class' => 'round',
],
],
'button_group_second' => [
'label' => 'Buttons group',
'buttons' => [
'four' => [
'type' => 'button',
'options' => [
'label' => 'four',
'attr' => [
'class' => 'disabled',
],
],
],
'five' => [
'type' => 'button',
'options' => [
'label' => 'five',
'attr' => [
'class' => 'secondary',
],
],
],
'six' => [
'type' => 'button',
'options' => [
'label' => 'six',
'attr' => [
'class' => 'secondary',
],
],
],
],
'attr' => [
'class' => 'radius',
],
],
],
);
- Florian Belhomme a.k.a Solune
- The Community Contributors
Contributions to the package are always welcome! Feedback is great.
Feel free to fork the project and make a PR. You can also help the others, look in the issues.
If you are having problems, fill an issue.
This bundle is licensed under the MIT License