@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function index(): Response |
| 15 | 15 | { |
| 16 | - return $this->render('kitchensink/index.html.twig'); |
|
| 16 | + return $this->render('kitchensink/index.html.twig'); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | /** |
@@ -19,19 +19,19 @@ |
||
| 19 | 19 | $builder |
| 20 | 20 | ->add( |
| 21 | 21 | 'content_support_searchfield', null, [ |
| 22 | - 'attr' => [ |
|
| 23 | - 'placeholder' => 'OC / GC / Name / Owner / %%%', |
|
| 24 | - 'autofocus' => 'autofocus', |
|
| 25 | - 'size' => '10%', |
|
| 26 | - 'minlength' => '3', |
|
| 27 | - 'maxlength' => '100', |
|
| 28 | - 'style' => 'width: 250px;' |
|
| 29 | - ], |
|
| 30 | - 'required' => true, |
|
| 31 | - 'disabled' => false, |
|
| 32 | - 'label' => false, |
|
| 33 | - 'trim' => true |
|
| 34 | - ] |
|
| 22 | + 'attr' => [ |
|
| 23 | + 'placeholder' => 'OC / GC / Name / Owner / %%%', |
|
| 24 | + 'autofocus' => 'autofocus', |
|
| 25 | + 'size' => '10%', |
|
| 26 | + 'minlength' => '3', |
|
| 27 | + 'maxlength' => '100', |
|
| 28 | + 'style' => 'width: 250px;' |
|
| 29 | + ], |
|
| 30 | + 'required' => true, |
|
| 31 | + 'disabled' => false, |
|
| 32 | + 'label' => false, |
|
| 33 | + 'trim' => true |
|
| 34 | + ] |
|
| 35 | 35 | ) |
| 36 | 36 | ->add( |
| 37 | 37 | 'search_All', SubmitType::class, [ |
@@ -31,37 +31,37 @@ |
||
| 31 | 31 | ) |
| 32 | 32 | ->add( |
| 33 | 33 | 'content_WHAT', null, [ |
| 34 | - 'required' => true, |
|
| 35 | - 'data' => '*', |
|
| 36 | - 'attr' => [ |
|
| 37 | - 'style' => 'width: 180px;' |
|
| 38 | - ], |
|
| 39 | - 'disabled' => false, |
|
| 40 | - 'label' => false, |
|
| 41 | - 'trim' => true |
|
| 42 | - ] |
|
| 34 | + 'required' => true, |
|
| 35 | + 'data' => '*', |
|
| 36 | + 'attr' => [ |
|
| 37 | + 'style' => 'width: 180px;' |
|
| 38 | + ], |
|
| 39 | + 'disabled' => false, |
|
| 40 | + 'label' => false, |
|
| 41 | + 'trim' => true |
|
| 42 | + ] |
|
| 43 | 43 | ) |
| 44 | 44 | ->add( |
| 45 | 45 | 'content_FROM', ChoiceType::class, [ |
| 46 | - 'choices' => ['FROM' => 'FROM'], |
|
| 47 | - 'attr' => [ |
|
| 48 | - 'style' => 'width: 180px;' |
|
| 49 | - ], |
|
| 50 | - 'disabled' => true, |
|
| 51 | - 'label' => false, |
|
| 52 | - 'trim' => true |
|
| 53 | - ] |
|
| 46 | + 'choices' => ['FROM' => 'FROM'], |
|
| 47 | + 'attr' => [ |
|
| 48 | + 'style' => 'width: 180px;' |
|
| 49 | + ], |
|
| 50 | + 'disabled' => true, |
|
| 51 | + 'label' => false, |
|
| 52 | + 'trim' => true |
|
| 53 | + ] |
|
| 54 | 54 | ) |
| 55 | 55 | ->add( |
| 56 | 56 | 'content_TABLE', ChoiceType::class, [ |
| 57 | - 'choices' => ['caches' => 'caches', 'user' => 'user'], |
|
| 58 | - 'attr' => [ |
|
| 59 | - 'style' => 'width: 180px;' |
|
| 60 | - ], |
|
| 61 | - 'disabled' => false, |
|
| 62 | - 'label' => false, |
|
| 63 | - 'trim' => true |
|
| 64 | - ] |
|
| 57 | + 'choices' => ['caches' => 'caches', 'user' => 'user'], |
|
| 58 | + 'attr' => [ |
|
| 59 | + 'style' => 'width: 180px;' |
|
| 60 | + ], |
|
| 61 | + 'disabled' => false, |
|
| 62 | + 'label' => false, |
|
| 63 | + 'trim' => true |
|
| 64 | + ] |
|
| 65 | 65 | ) |
| 66 | 66 | ->add( |
| 67 | 67 | 'Suchen', SubmitType::class, [ |
@@ -24,16 +24,16 @@ discard block |
||
| 24 | 24 | $builder |
| 25 | 25 | ->add( |
| 26 | 26 | 'support_admin_comment', TextareaType::class, [ |
| 27 | - 'attr' => [ |
|
| 28 | - 'maxlength' => '32000', |
|
| 29 | - 'overflow' => 'auto', |
|
| 30 | - 'rows' => '10', |
|
| 31 | - ], |
|
| 32 | - 'required' => false, |
|
| 33 | - 'disabled' => false, |
|
| 34 | - 'label' => false, |
|
| 35 | - 'trim' => true |
|
| 36 | - ] |
|
| 27 | + 'attr' => [ |
|
| 28 | + 'maxlength' => '32000', |
|
| 29 | + 'overflow' => 'auto', |
|
| 30 | + 'rows' => '10', |
|
| 31 | + ], |
|
| 32 | + 'required' => false, |
|
| 33 | + 'disabled' => false, |
|
| 34 | + 'label' => false, |
|
| 35 | + 'trim' => true |
|
| 36 | + ] |
|
| 37 | 37 | ) |
| 38 | 38 | ->add( |
| 39 | 39 | 'save_admin_comment', SubmitType::class, [ |
@@ -43,8 +43,8 @@ discard block |
||
| 43 | 43 | ) |
| 44 | 44 | ->add( |
| 45 | 45 | 'hidden_repID', HiddenType::class, [ |
| 46 | - 'attr' => ['maxlength' => '10'], |
|
| 47 | - ] |
|
| 46 | + 'attr' => ['maxlength' => '10'], |
|
| 47 | + ] |
|
| 48 | 48 | ); |
| 49 | 49 | } |
| 50 | 50 | } |
@@ -128,9 +128,9 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | return $this->render( |
| 130 | 130 | 'backend/support/searchedCaches.html.twig', [ |
| 131 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 132 | - 'foundCaches' => $fetchedCaches |
|
| 133 | - ] |
|
| 131 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 132 | + 'foundCaches' => $fetchedCaches |
|
| 133 | + ] |
|
| 134 | 134 | ); |
| 135 | 135 | } |
| 136 | 136 | |
@@ -149,9 +149,9 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | return $this->render( |
| 151 | 151 | 'backend/support/reportedCaches.html.twig', [ |
| 152 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 153 | - 'reportedCaches_by_id' => $fetchedReports |
|
| 154 | - ] |
|
| 152 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 153 | + 'reportedCaches_by_id' => $fetchedReports |
|
| 154 | + ] |
|
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | |
@@ -170,9 +170,9 @@ discard block |
||
| 170 | 170 | |
| 171 | 171 | return $this->render( |
| 172 | 172 | 'backend/support/bonusCaches.html.twig', [ |
| 173 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 174 | - 'bonusCaches_by_id' => $fetchedBonuscaches |
|
| 175 | - ] |
|
| 173 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 174 | + 'bonusCaches_by_id' => $fetchedBonuscaches |
|
| 175 | + ] |
|
| 176 | 176 | ); |
| 177 | 177 | } |
| 178 | 178 | |
@@ -213,10 +213,10 @@ discard block |
||
| 213 | 213 | |
| 214 | 214 | return $this->render( |
| 215 | 215 | 'backend/support/databaseQueries.html.twig', [ |
| 216 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 217 | - 'SQLFlexForm' => $form->createView(), |
|
| 218 | - 'suppSQLqueryFlex' => $fetchedInformation |
|
| 219 | - ] |
|
| 216 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 217 | + 'SQLFlexForm' => $form->createView(), |
|
| 218 | + 'suppSQLqueryFlex' => $fetchedInformation |
|
| 219 | + ] |
|
| 220 | 220 | ); |
| 221 | 221 | } |
| 222 | 222 | |
@@ -436,9 +436,9 @@ discard block |
||
| 436 | 436 | |
| 437 | 437 | return $this->render( |
| 438 | 438 | 'backend/support/databaseQueries.html.twig', [ |
| 439 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 440 | - 'suppSQLquery1' => $qb->execute()->fetchAll() |
|
| 441 | - ] |
|
| 439 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 440 | + 'suppSQLquery1' => $qb->execute()->fetchAll() |
|
| 441 | + ] |
|
| 442 | 442 | ); |
| 443 | 443 | } |
| 444 | 444 | |
@@ -462,9 +462,9 @@ discard block |
||
| 462 | 462 | |
| 463 | 463 | return $this->render( |
| 464 | 464 | 'backend/support/databaseQueries.html.twig', [ |
| 465 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 466 | - 'suppSQLquery2' => $qb->execute()->fetchAll() |
|
| 467 | - ] |
|
| 465 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 466 | + 'suppSQLquery2' => $qb->execute()->fetchAll() |
|
| 467 | + ] |
|
| 468 | 468 | ); |
| 469 | 469 | } |
| 470 | 470 | |
@@ -490,9 +490,9 @@ discard block |
||
| 490 | 490 | |
| 491 | 491 | return $this->render( |
| 492 | 492 | 'backend/support/databaseQueries.html.twig', [ |
| 493 | - 'supportCachesForm' => $formSearch->createView(), |
|
| 494 | - 'suppSQLquery4' => $qb->execute()->fetchAll() |
|
| 495 | - ] |
|
| 493 | + 'supportCachesForm' => $formSearch->createView(), |
|
| 494 | + 'suppSQLquery4' => $qb->execute()->fetchAll() |
|
| 495 | + ] |
|
| 496 | 496 | ); |
| 497 | 497 | } |
| 498 | 498 | |