Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeliveryFormFactory
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 create
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2022 (original work) Open Assessment Technologies SA;
19 *
20 * @author Sergei Mikhailov <sergei.mikhailov@taotesting.com>
21 */
22
23declare(strict_types=1);
24
25namespace oat\taoDeliveryRdf\model\Delivery\Presentation\Web\Form;
26
27use core_kernel_classes_Resource as KernelResource;
28use oat\generis\model\OntologyAwareTrait;
29use oat\tao\model\Lists\Business\Validation\DependsOnPropertyValidator;
30use oat\taoDeliveryRdf\model\DeliveryAssemblyService;
31use oat\taoDeliveryRdf\model\validation\DeliveryValidatorFactory;
32use oat\taoDeliveryRdf\view\form\DeliveryForm;
33use tao_helpers_form_FormContainer as FormContainer;
34
35class DeliveryFormFactory
36{
37    use OntologyAwareTrait;
38
39    /** @var DeliveryValidatorFactory */
40    private $validatorFactory;
41
42    /** @var DependsOnPropertyValidator */
43    private $dependsOnPropertyValidator;
44
45    public function __construct(
46        DeliveryValidatorFactory $validatorFactory,
47        DependsOnPropertyValidator $dependsOnPropertyValidator
48    ) {
49        $this->validatorFactory = $validatorFactory;
50        $this->dependsOnPropertyValidator = $dependsOnPropertyValidator;
51    }
52
53    public function create(KernelResource $delivery, array $additionalOptions = []): DeliveryForm
54    {
55        return new DeliveryForm(
56            $this->getClass(DeliveryAssemblyService::CLASS_URI),
57            $delivery,
58            $additionalOptions + [
59                FormContainer::ADDITIONAL_VALIDATORS => $this->validatorFactory->createMultiple(),
60                FormContainer::ATTRIBUTE_VALIDATORS  => [
61                    'data-depends-on-property' => [
62                        $this->dependsOnPropertyValidator
63                    ],
64                ],
65            ]
66        );
67    }
68}