<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace App\Form\Type\Admin;
use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
use Sylius\Bundle\ResourceBundle\Form\Type\ResourceAutocompleteChoiceType;
use Symfony\Component\Form\DataMapperInterface;
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
use Symfony\Component\Form\FormBuilderInterface;
final class OrderItemType extends AbstractResourceType
{
/** @var DataMapperInterface */
private $dataMapper;
public function __construct(
string $dataClass,
array $validationGroups = [],
DataMapperInterface $dataMapper
) {
parent::__construct($dataClass, $validationGroups);
$this->dataMapper = $dataMapper;
}
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('variant', ResourceAutocompleteChoiceType::class, [
'label' => 'sylius.ui.variant',
'choice_name' => 'descriptor',
'choice_value' => 'code',
'resource' => 'sylius.product_variant',
])
->add('quantity', IntegerType::class, [
'attr' => ['min' => 1],
'label' => 'sylius.ui.quantity',
])
->setDataMapper($this->dataMapper)
;
}
public function getBlockPrefix(): string
{
return 'app_order_update_item_block';
}
}