DatetimepickerBundle
This bundle implements the Bootstrap DateTime Picker in a Form Type for Symfony 2.*. The bundle structure is inspired by GenemuFormBundle., (*1)
Demo : http://www.malot.fr/bootstrap-datetimepicker/demo.php, (*2)
Please feel free to contribute, to fork, to send merge request and to create ticket., (*3)
Installation
Step 1: Install DatetimepickerBundle
Add the following dependency to your composer.json file:, (*4)
``` json
{
"require": {, (*5)
"stephanecollot/datetimepicker-bundle": "dev-master"
}
}, (*6)
and then run
```bash
php composer.phar update stephanecollot/datetimepicker-bundle
Step 2: Enable the bundle
``` php
<?php
// app/AppKernel.php, (*7)
public function registerBundles()
{
$bundles = array(
// ...
new SC\DatetimepickerBundle\SCDatetimepickerBundle(),
);
}, (*8)
``` yml
# app/config/config.yml
sc_datetimepicker:
picker: ~
Step 3: Initialize assets
``` bash
$ php app/console assets:install web/, (*9)
## Usages
``` php
<?php
// ...
use SC\DatetimepickerBundle\Form\Type\DatetimeType;
public function buildForm(FormBuilder $builder, array $options)
{
$builder
// defaut options
->add('createdAt', DatetimeType::class)
// full options
->add('updatedAt', DatetimeType::class, array( 'pickerOptions' =>
array('format' => 'mm/dd/yyyy',
'weekStart' => 0,
'startDate' => date('m/d/Y'), //example
'endDate' => '01/01/3000', //example
'daysOfWeekDisabled' => '0,6', //example
'autoclose' => false,
'startView' => 'month',
'minView' => 'hour',
'maxView' => 'decade',
'todayBtn' => false,
'todayHighlight' => false,
'keyboardNavigation' => true,
'language' => 'en',
'forceParse' => true,
'minuteStep' => 5,
'pickerReferer ' => 'default', //deprecated
'pickerPosition' => 'bottom-right',
'viewSelect' => 'hour',
'showMeridian' => false,
'initialDate' => date('m/d/Y', 1577836800), //example
))) ;
}
Add form_javascript and form_stylesheet, (*10)
The principle is to separate the javascript, stylesheet and html.
This allows better integration of web pages., (*11)
Example:
``` twig
{% block stylesheets %}
, (*12)
{{ form_stylesheet(form) }}
{% endblock %}, (*13)
{% block javascripts %}
, (*14)
{{ form_javascript(form) }}
{% endblock %}, (*15)
{% block body %}, (*16)
{% endblock %}
```, (*17)
Documentation
The documentation of the datetime picker is here : http://www.malot.fr/bootstrap-datetimepicker/#options, (*18)
Notes
The date format from php 'pickerOptions' => array('format'=>'dd MM yyyy - HH:ii p')
is used to set automatically the date format of Symfony in order to make compatible Symfony and JavaScript output.
But there are some problems for example with php MM
which display "décembre" in PHP intl translation and "Decembre" in Bootstrap translation. That is why I edited js/locales/bootstrap-datetimepicker.fr.js, (*19)