1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Sylius package. |
5
|
|
|
* |
6
|
|
|
* (c) Paweł Jędrzejewski |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Sylius\Bundle\ProductBundle\Controller; |
13
|
|
|
|
14
|
|
|
use FOS\RestBundle\View\View; |
15
|
|
|
use Sylius\Bundle\ProductBundle\Form\Type\ProductAttributeChoiceType; |
16
|
|
|
use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
17
|
|
|
use Sylius\Component\Attribute\Model\AttributeInterface; |
18
|
|
|
use Symfony\Component\Form\FormView; |
19
|
|
|
use Symfony\Component\HttpFoundation\Request; |
20
|
|
|
use Symfony\Component\HttpFoundation\Response; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @author Mateusz Zalewski <[email protected]> |
24
|
|
|
*/ |
25
|
|
|
class ProductAttributeController extends ResourceController |
26
|
|
|
{ |
27
|
|
|
/** |
28
|
|
|
* @param Request $request |
29
|
|
|
* @param string $template |
30
|
|
|
* |
31
|
|
|
* @return Response |
32
|
|
|
*/ |
33
|
|
|
public function getAttributeTypesAction(Request $request, $template) |
34
|
|
|
{ |
35
|
|
|
$configuration = $this->requestConfigurationFactory->create($this->metadata, $request); |
36
|
|
|
|
37
|
|
|
$view = View::create() |
38
|
|
|
->setTemplate($template) |
39
|
|
|
->setTemplateVar($this->metadata->getPluralName()) |
40
|
|
|
->setData([ |
41
|
|
|
'types' => $this->get('sylius.registry.attribute_type')->all(), |
42
|
|
|
'metadata' => $this->metadata, |
43
|
|
|
]) |
44
|
|
|
; |
45
|
|
|
|
46
|
|
|
return $this->viewHandler->handle($configuration, $view); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @return Response |
51
|
|
|
*/ |
52
|
|
|
public function renderAttributesAction(Request $request) |
53
|
|
|
{ |
54
|
|
|
$template = $request->attributes->get('template', 'SyliusAttributeBundle::attributeChoice.html.twig'); |
55
|
|
|
|
56
|
|
|
$form = $this->get('form.factory')->create(ProductAttributeChoiceType::class, null, [ |
57
|
|
|
'multiple' => true, |
58
|
|
|
]); |
59
|
|
|
|
60
|
|
|
return $this->render($template, ['form' => $form->createView()]); |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* @param Request $request |
65
|
|
|
* |
66
|
|
|
* @return Response |
67
|
|
|
*/ |
68
|
|
|
public function renderAttributeValueFormsAction(Request $request) |
69
|
|
|
{ |
70
|
|
|
$template = $request->attributes->get('template', 'SyliusAttributeBundle::attributeValueForms.html.twig'); |
71
|
|
|
|
72
|
|
|
$form = $this->get('form.factory')->create(ProductAttributeChoiceType::class, null, [ |
73
|
|
|
'multiple' => true, |
74
|
|
|
]); |
75
|
|
|
$form->handleRequest($request); |
76
|
|
|
|
77
|
|
|
$attributes = $form->getData(); |
78
|
|
|
foreach ($attributes as $attribute) { |
79
|
|
|
$forms[$attribute->getId()] = $this->getAttributeForm($attribute); |
|
|
|
|
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
return $this->render($template, [ |
83
|
|
|
'forms' => $forms, |
|
|
|
|
84
|
|
|
'count' => $request->query->get('count'), |
85
|
|
|
'metadata' => $this->metadata, |
86
|
|
|
]); |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
/** |
90
|
|
|
* @param AttributeInterface $attribute |
91
|
|
|
* |
92
|
|
|
* @return FormView |
93
|
|
|
*/ |
94
|
|
|
private function getAttributeForm(AttributeInterface $attribute) |
95
|
|
|
{ |
96
|
|
|
$attributeForm = $this->get('sylius.form_registry.attribute_type')->get($attribute->getType(), 'default'); |
97
|
|
|
|
98
|
|
|
$form = $this |
99
|
|
|
->get('form.factory') |
100
|
|
|
->createNamed('value', $attributeForm, null, ['label' => $attribute->getName()]) |
101
|
|
|
; |
102
|
|
|
|
103
|
|
|
return $form->createView(); |
104
|
|
|
} |
105
|
|
|
} |
106
|
|
|
|
Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.
Let’s take a look at an example:
As you can see in this example, the array
$myArray
is initialized the first time when the foreach loop is entered. You can also see that the value of thebar
key is only written conditionally; thus, its value might result from a previous iteration.This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.