Warning: You are browsing the documentation for PrestaShop 1.7, which is outdated.
You might want to read an updated version of this page for the current version, PrestaShop 8. Read the updated version of this page
DatePickerType creates a field with a date picker. It uses Javascript, but doesn’t require any specific components, as it’s already enabled globally.
None.
None.
<?php
// path/to/your/CustomType.php
use PrestaShopBundle\Form\Admin\Type\DatePickerType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class CustomType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('date_from', DatePickerType::class)
->add('date_to', DatePickerType::class);
}
}