2017 © Pedro PelĂĄez
 

symfony-bundle datetimepicker-bundle

Symfony bundle for Bootstrap DateTime picker

image

rodyhaddad/datetimepicker-bundle

Symfony bundle for Bootstrap DateTime picker

  • Monday, March 26, 2018
  • by rodyhaddad
  • Repository
  • 1 Watchers
  • 0 Stars
  • 40 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 58 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

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)

{{ form_widget(form) }}

{% 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)

The Versions

26/03 2018

dev-master

9999999-dev

Symfony bundle for Bootstrap DateTime picker

  Sources   Download

MIT

The Requires

 

by Stephane Collot

bootstrap bundle symfony datepicker timepicker picker

27/02 2015

1.0.1

1.0.1.0

Symfony bundle for Bootstrap DateTime picker

  Sources   Download

MIT

The Requires

 

by Stephane Collot

bootstrap bundle symfony datepicker timepicker picker

27/02 2015

0.1.0.x-dev

0.1.0.9999999-dev

Symfony bundle for Bootstrap DateTime picker

  Sources   Download

MIT

The Requires

 

by Stephane Collot

bootstrap bundle symfony datepicker timepicker picker