@@ -89,7 +89,7 @@ |
||
89 | 89 | $pageId = $page->getId(); |
90 | 90 | $viewReference = array_filter( |
91 | 91 | $viewReferences, |
92 | - function ($e) use ($pageId) { |
|
92 | + function($e) use ($pageId) { |
|
93 | 93 | return $e->getViewId() == $pageId; |
94 | 94 | }); |
95 | 95 | if (!empty($viewReference[0])) { |
@@ -54,18 +54,18 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function buildForm(FormBuilderInterface $builder, array $options) |
56 | 56 | { |
57 | - $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) { |
|
57 | + $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) { |
|
58 | 58 | $view = $event->getData(); |
59 | 59 | $form = $event->getForm(); |
60 | 60 | |
61 | 61 | $this->isNew = !$view || null === $view->getId(); |
62 | 62 | |
63 | 63 | if ($this->isNew) { |
64 | - $getAllTemplateWithoutMe = function (EntityRepository $tr) { |
|
64 | + $getAllTemplateWithoutMe = function(EntityRepository $tr) { |
|
65 | 65 | return $tr->getAll()->getInstance(); |
66 | 66 | }; |
67 | 67 | } else { |
68 | - $getAllTemplateWithoutMe = function (EntityRepository $tr) use ($view) { |
|
68 | + $getAllTemplateWithoutMe = function(EntityRepository $tr) use ($view) { |
|
69 | 69 | return $tr->getAll() |
70 | 70 | ->getInstance() |
71 | 71 | ->andWhere('template.id != :templateId') |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | //If view is an Article BEP, we do not allow to choose parent because it will be set automatically |
85 | 85 | if (!$view instanceof ArticleTemplate && ClassUtils::getClass($view) != 'Victoire\Bundle\TemplateBundle\Entity\Template') { |
86 | 86 | if (!$view || null === $view->getId()) { |
87 | - $getAllPageWithoutMe = function (EntityRepository $repo) { |
|
87 | + $getAllPageWithoutMe = function(EntityRepository $repo) { |
|
88 | 88 | return $repo->getAll()->getInstance(); |
89 | 89 | }; |
90 | 90 | } else { |
91 | - $getAllPageWithoutMe = function (EntityRepository $repo) use ($view) { |
|
91 | + $getAllPageWithoutMe = function(EntityRepository $repo) use ($view) { |
|
92 | 92 | return $repo->getAll() |
93 | 93 | ->getInstance() |
94 | 94 | ->andWhere('view.id != :pageId') |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | ->add('author', null, [ |
53 | 53 | 'label' => 'form.article.type.author.label', |
54 | 54 | 'required' => true, |
55 | - 'query_builder' => function (EntityRepository $er) { |
|
55 | + 'query_builder' => function(EntityRepository $er) { |
|
56 | 56 | return $er->createQueryBuilder('user') |
57 | 57 | ->where('user.roles LIKE :roles') |
58 | 58 | ->setParameter('roles', '%ROLE_VICTOIRE%'); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | ]) |
61 | 61 | ->remove('visibleOnFront'); |
62 | 62 | |
63 | - $builder->get('blog')->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) { |
|
63 | + $builder->get('blog')->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) { |
|
64 | 64 | $data = $event->getData(); |
65 | 65 | $parent = $event->getForm()->getParent(); |
66 | 66 | $this->manageCategories($data, $parent); |
@@ -68,19 +68,19 @@ discard block |
||
68 | 68 | $this->manageLocales($data, $parent); |
69 | 69 | }); |
70 | 70 | |
71 | - $builder->get('blog')->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
71 | + $builder->get('blog')->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) { |
|
72 | 72 | $data = $event->getData(); |
73 | 73 | $parent = $event->getForm()->getParent(); |
74 | 74 | $this->manageCategories($data, $parent); |
75 | 75 | $this->manageLocales($data, $parent); |
76 | 76 | }); |
77 | 77 | |
78 | - $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) { |
|
78 | + $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) { |
|
79 | 79 | $data = $event->getData(); |
80 | 80 | $form = $event->getForm(); |
81 | 81 | $this->manageTags($data, $form); |
82 | 82 | }); |
83 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
83 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) { |
|
84 | 84 | $form = $event->getForm(); |
85 | 85 | $data = $form->getData(); |
86 | 86 | $this->manageTags($data, $form); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $form->add('tags', TagsType::class, [ |
96 | 96 | 'required' => false, |
97 | 97 | 'multiple' => true, |
98 | - 'query_builder' => function (TagRepository $er) use ($data) { |
|
98 | + 'query_builder' => function(TagRepository $er) use ($data) { |
|
99 | 99 | $qb = $er->filterByBlog($data->getBlog())->getInstance(); |
100 | 100 | $er->clearInstance(); |
101 | 101 | |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | |
179 | 179 | if (!$form->getData()->getTemplate()) { |
180 | 180 | if ($articleTemplateRepo->filterByBlog($blog_id)->getCount('parent')->run('getSingleScalarResult') > 1) { |
181 | - $articleTemplates = function (ArticleTemplateRepository $repo) use ($blog_id) { |
|
181 | + $articleTemplates = function(ArticleTemplateRepository $repo) use ($blog_id) { |
|
182 | 182 | return $repo->filterByBlog($blog_id)->getInstance(); |
183 | 183 | }; |
184 | 184 | $form->add('template', null, [ |
@@ -38,7 +38,7 @@ |
||
38 | 38 | ->add('name') |
39 | 39 | ->add('rel', ChoiceType::class, ['choices' => ['media', 'image', 'slideshow', 'video']]) |
40 | 40 | ->add('parent', EntityType::class, ['class' => 'Victoire\Bundle\MediaBundle\Entity\Folder', 'required' => false, |
41 | - 'query_builder' => function (\Doctrine\ORM\EntityRepository $er) use ($folder, $type) { |
|
41 | + 'query_builder' => function(\Doctrine\ORM\EntityRepository $er) use ($folder, $type) { |
|
42 | 42 | $qb = $er->createQueryBuilder('folder'); |
43 | 43 | |
44 | 44 | if ($folder != null && $folder->getId() != null) { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | 'choices' => $options['linkTypeChoices'], |
65 | 65 | 'choices_as_values' => true, |
66 | 66 | ]) |
67 | - ->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use ($builder, $options) { |
|
67 | + ->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) use ($builder, $options) { |
|
68 | 68 | /** @var Link $data */ |
69 | 69 | $data = $event->getData(); |
70 | 70 | $form = $event->getForm(); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | }); |
75 | 75 | |
76 | 76 | $builder |
77 | - ->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) use ($builder, $options) { |
|
77 | + ->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) use ($builder, $options) { |
|
78 | 78 | $form = $event->getForm(); |
79 | 79 | $data = $event->getData(); |
80 | 80 | $locale = isset($data['locale']) ? $data['locale'] : null; |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | 'label' => 'form.link_type.target.modalLayouts.label', |
213 | 213 | 'required' => true, |
214 | 214 | 'choices' => $this->modalLayouts, |
215 | - 'choice_label' => function ($value, $key, $index) { |
|
215 | + 'choice_label' => function($value, $key, $index) { |
|
216 | 216 | return 'form.link_type.target.modalLayouts.choices.'.$value; |
217 | 217 | }, |
218 | 218 | 'choices_as_values' => true, |
@@ -193,7 +193,7 @@ |
||
193 | 193 | foreach ($findMethods as $findMethod => $associatedEntitiesToWarm) { |
194 | 194 | |
195 | 195 | //Extract ids to search |
196 | - $idsToSearch = array_map(function ($associatedEntityToWarm) { |
|
196 | + $idsToSearch = array_map(function($associatedEntityToWarm) { |
|
197 | 197 | return $associatedEntityToWarm->getEntityId(); |
198 | 198 | }, $associatedEntitiesToWarm); |
199 | 199 |
@@ -62,7 +62,7 @@ |
||
62 | 62 | ]; |
63 | 63 | |
64 | 64 | for ($i = 1; $i <= 1000; $i++) { |
65 | - $buildSortedWidget = function ($builtWidgetMap) use (&$order, &$buildSortedWidget, $view) { |
|
65 | + $buildSortedWidget = function($builtWidgetMap) use (&$order, &$buildSortedWidget, $view) { |
|
66 | 66 | $sortedWidget['widgetMap'] = $builtWidgetMap['content'][array_rand($builtWidgetMap['content'])]; |
67 | 67 | $availablePositions = []; |
68 | 68 | $positions = [WidgetMap::POSITION_AFTER, WidgetMap::POSITION_BEFORE]; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | $ids = [$tree->getViewId()]; |
59 | 59 | |
60 | - $getChildrenIds = function (ViewReference $tree) use (&$getChildrenIds, $ids) { |
|
60 | + $getChildrenIds = function(ViewReference $tree) use (&$getChildrenIds, $ids) { |
|
61 | 61 | foreach ($tree->getChildren() as $child) { |
62 | 62 | $ids[] = $child->getViewId(); |
63 | 63 | $ids = array_merge($ids, $getChildrenIds($child)); |
@@ -42,7 +42,7 @@ |
||
42 | 42 | 'options' => [ |
43 | 43 | 'choices' => $this->availableLocales, |
44 | 44 | 'choices_as_values' => true, |
45 | - 'choice_label' => function ($value) { |
|
45 | + 'choice_label' => function($value) { |
|
46 | 46 | return $value; |
47 | 47 | }, |
48 | 48 | ], |