mablae/datetimepicker-bundle
Composer 安装命令:
composer require mablae/datetimepicker-bundle
包简介
Symfony bundle for Bootstrap3 DateTime picker
README 文档
README
Warning: This is abadoned and incomplete! Uses at your own rik.
This bundle implements the Bootstrap DateTime Picker v4 in a Form Type for Symfony 2.*. The bundle structure is inspired by GenemuFormBundle.
Please feel free to contribute, to fork, to send merge request and to create ticket.
Installation
Step 1: Install DatetimepickerBundle
php composer.phar require mablae/datetimepicker-bundle
Step 2: Enable the bundle
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Mablae\DatetimepickerBundle\MablaeDatetimepickerBundle(), ); }
# app/config/config.yml mablae_datetimepicker: picker: ~
Step 3: Install moment.js and Bootstrap3 Datepicker
This bundle does not handle an asset minification or loading. Just use gulp or webpack.
http://eonasdan.github.io/bootstrap-datetimepicker/Installing/
Usages
<?php // ... use Mablae\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', 'viewMode' => 'days', // days, month, years, decades ))); }
Include the javascript needed to initialize the widget:
...
{{ form_javascript(your.form.field) }}
...
统计信息
- 总下载量: 4.27k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-02-15