Completed
Push — 8.x-1.x ( 9a9ef3...36f569 )
by Janez
02:25
created
src/Tests/EntityBrowserUpdateHookTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
    */
17 17
   protected function setDatabaseDumpFiles() {
18 18
     $this->databaseDumpFiles = [
19
-      DRUPAL_ROOT . '/core/modules/system/tests/fixtures/update/drupal-8.bare.standard.php.gz',
20
-      __DIR__ . '/../../tests/fixtures/update/entity_browser.update-hook-test.php',
19
+      DRUPAL_ROOT.'/core/modules/system/tests/fixtures/update/drupal-8.bare.standard.php.gz',
20
+      __DIR__.'/../../tests/fixtures/update/entity_browser.update-hook-test.php',
21 21
     ];
22 22
   }
23 23
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
       ->get('entity_browser.browser.test_update');
53 53
 
54 54
     $this->assertNull($browser->get('submit_text'), 'Old submit text is gone');
55
-    $this->assertEqual($browser->get('widgets.a4ad947c-9669-497c-9988-24351955a02f.settings.submit_text'), 'All animals are created equal','New submit text appears on the widget.');
55
+    $this->assertEqual($browser->get('widgets.a4ad947c-9669-497c-9988-24351955a02f.settings.submit_text'), 'All animals are created equal', 'New submit text appears on the widget.');
56 56
   }
57 57
 
58 58
 }
Please login to merge, or discard this patch.
src/Plugin/EntityBrowser/Widget/Upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
       $files = $this->prepareEntities($form, $form_state);
126 126
       array_walk(
127 127
         $files,
128
-        function (FileInterface $file) {
128
+        function(FileInterface $file) {
129 129
           $file->setPermanent();
130 130
           $file->save();
131 131
         }
Please login to merge, or discard this patch.
modules/entity_form/src/Plugin/EntityBrowser/Widget/EntityForm.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
    * {@inheritdoc}
99 99
    */
100 100
   public function getForm(array &$original_form, FormStateInterface $form_state, array $aditional_widget_parameters) {
101
-    if (empty($this->configuration['entity_type']) || empty($this->configuration['bundle'])  || empty($this->configuration['form_mode'])) {
101
+    if (empty($this->configuration['entity_type']) || empty($this->configuration['bundle']) || empty($this->configuration['form_mode'])) {
102 102
       return ['#markup' => $this->t('The settings for this widget (Entity type, Bundle or Form mode) are not configured correctly.')];
103 103
     }
104 104
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     // Pretend to be IEFs submit button.
108 108
     $form['#submit'] = [['Drupal\inline_entity_form\ElementSubmit', 'trigger']];
109
-    $form['actions']['submit']['#ief_submit_trigger']  = TRUE;
109
+    $form['actions']['submit']['#ief_submit_trigger'] = TRUE;
110 110
     $form['actions']['submit']['#ief_submit_trigger_all'] = TRUE;
111 111
 
112 112
     $form['inline_entity_form'] = [
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     $entities = $this->prepareEntities($form, $form_state);
135 135
     array_walk(
136 136
       $entities,
137
-      function (EntityInterface $entity) {
137
+      function(EntityInterface $entity) {
138 138
         $entity->save();
139 139
       }
140 140
     );
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     $definitions = $this->entityTypeManager->getDefinitions();
156 156
     $entity_types = array_combine(
157 157
       array_keys($definitions),
158
-      array_map(function (EntityTypeInterface $item) {
158
+      array_map(function(EntityTypeInterface $item) {
159 159
         return $item->getLabel();
160 160
       }, $definitions)
161 161
     );
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     $bundles = [];
174 174
     if ($entity_type) {
175 175
       $definitions = $this->entityTypeBundleInfo->getBundleInfo($entity_type);
176
-      $bundles = array_map(function ($item) {
176
+      $bundles = array_map(function($item) {
177 177
         return $item['label'];
178 178
       }, $definitions);
179 179
     }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         '#options' => $bundles,
187 187
         '#default_value' => $bundle,
188 188
       ],
189
-      '#attributes' => ['id' => 'bundle-wrapper-' . $this->uuid()],
189
+      '#attributes' => ['id' => 'bundle-wrapper-'.$this->uuid()],
190 190
     ];
191 191
 
192 192
     $form['form_mode'] = [
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         '#default_value' => $form_mode,
198 198
         '#options' => $this->entityDisplayRepository->getFormModeOptions($entity_type),
199 199
       ],
200
-      '#attributes' => ['id' => 'form-mode-wrapper-' . $this->uuid()],
200
+      '#attributes' => ['id' => 'form-mode-wrapper-'.$this->uuid()],
201 201
     ];
202 202
 
203 203
     return $form;
@@ -222,8 +222,8 @@  discard block
 block discarded – undo
222 222
    */
223 223
   public function updateFormElements($form, FormStateInterface $form_state) {
224 224
     $response = new AjaxResponse();
225
-    $response->addCommand(new ReplaceCommand('#bundle-wrapper-' . $this->uuid(), $this->updateBundle($form, $form_state)));
226
-    $response->addCommand(new ReplaceCommand('#form-mode-wrapper-' . $this->uuid(), $this->updateFormMode($form, $form_state)));
225
+    $response->addCommand(new ReplaceCommand('#bundle-wrapper-'.$this->uuid(), $this->updateBundle($form, $form_state)));
226
+    $response->addCommand(new ReplaceCommand('#form-mode-wrapper-'.$this->uuid(), $this->updateFormMode($form, $form_state)));
227 227
     return $response;
228 228
   }
229 229
 
Please login to merge, or discard this patch.
src/Plugin/EntityBrowser/SelectionDisplay/View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     // can't do much about it.
51 51
     $selected_entities = $form_state->get(['entity_browser', 'selected_entities']);
52 52
     if (!empty($selected_entities)) {
53
-      $ids = array_map(function (EntityInterface $item) {
53
+      $ids = array_map(function(EntityInterface $item) {
54 54
         return $item->id();
55 55
       }, $selected_entities);
56 56
       $storage['selection_display_view']->setArguments([implode(',', $ids)]);
@@ -86,14 +86,14 @@  discard block
 block discarded – undo
86 86
     $views = Views::getAllViews();
87 87
     foreach ($views as $view_id => $view) {
88 88
       foreach ($view->get('display') as $display_id => $display) {
89
-        $options[$view_id . '.' . $display_id] = $this->t('@view : @display', array('@view' => $view->label(), '@display' => $display['display_title']));
89
+        $options[$view_id.'.'.$display_id] = $this->t('@view : @display', array('@view' => $view->label(), '@display' => $display['display_title']));
90 90
       }
91 91
     }
92 92
 
93 93
     $form['view'] = [
94 94
       '#type' => 'select',
95 95
       '#title' => $this->t('View : View display'),
96
-      '#default_value' => $this->configuration['view'] . '.' . $this->configuration['view_display'],
96
+      '#default_value' => $this->configuration['view'].'.'.$this->configuration['view_display'],
97 97
       '#options' => $options,
98 98
       '#required' => TRUE,
99 99
       '#description' => $this->t('View display to use for displaying currently selected items. Do note that to get something usefull out of this display, its first contextual filter should be a filter on the primary identifier field of your entity type (e.g., Node ID, Media ID).'),
Please login to merge, or discard this patch.
src/Plugin/EntityBrowser/SelectionDisplay/MultiStepDisplay.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         $display = ['#markup' => $display];
103 103
       }
104 104
 
105
-      $form['selected']['items_' . $entity->id() . '_' . $id] = [
105
+      $form['selected']['items_'.$entity->id().'_'.$id] = [
106 106
         '#theme_wrappers' => ['container'],
107 107
         '#attributes' => [
108 108
           'class' => ['item-container'],
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
           '#type' => 'submit',
114 114
           '#value' => $this->t('Remove'),
115 115
           '#submit' => [[get_class($this), 'removeItemSubmit']],
116
-          '#name' => 'remove_' . $entity->id() . '_' . $id,
116
+          '#name' => 'remove_'.$entity->id().'_'.$id,
117 117
           '#attributes' => [
118 118
             'data-row-id' => $id,
119
-            'data-remove-entity' => 'items_' . $entity->id(),
119
+            'data-remove-entity' => 'items_'.$entity->id(),
120 120
           ],
121 121
         ],
122 122
         'weight' => [
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     // Remove weight of entity being removed.
159 159
     $form_state->unsetValue([
160 160
       'selected',
161
-      $triggering_element['#attributes']['data-remove-entity'] . '_' . $triggering_element['#attributes']['data-row-id'],
161
+      $triggering_element['#attributes']['data-remove-entity'].'_'.$triggering_element['#attributes']['data-row-id'],
162 162
     ]);
163 163
 
164 164
     // Remove entity itself.
Please login to merge, or discard this patch.
src/Plugin/Field/FieldWidget/EntityReferenceBrowserWidget.php 2 patches
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -453,8 +453,7 @@  discard block
 block discarded – undo
453 453
     // and use this information to return correct part of the form.
454 454
     if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') {
455 455
       $parents = array_slice($trigger['#array_parents'], 0, -1);
456
-    }
457
-    elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], '_remove_')) {
456
+    } elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], '_remove_')) {
458 457
       $parents = array_slice($trigger['#array_parents'], 0, -static::$deleteDepth);
459 458
     }
460 459
 
@@ -621,12 +620,10 @@  discard block
 block discarded – undo
621 620
     $entity_browser_id = $this->getSetting('entity_browser');
622 621
     if (empty($entity_browser_id)) {
623 622
       return [$this->t('No entity browser selected.')];
624
-    }
625
-    else {
623
+    } else {
626 624
       if ($browser = $this->entityTypeManager->getStorage('entity_browser')->load($entity_browser_id)) {
627 625
         $summary[] = $this->t('Entity browser: @browser', ['@browser' => $browser->label()]);
628
-      }
629
-      else {
626
+      } else {
630 627
         drupal_set_message($this->t('Missing entity browser!'), 'error');
631 628
         return [$this->t('Missing entity browser!')];
632 629
       }
@@ -636,8 +633,7 @@  discard block
 block discarded – undo
636 633
     $selection_mode_options = EntityBrowserElement::getSelectionModeOptions();
637 634
     if (isset($selection_mode_options[$selection_mode])) {
638 635
       $summary[] = $this->t('Selection mode: @selection_mode', ['@selection_mode' => $selection_mode_options[$selection_mode]]);
639
-    }
640
-    else {
636
+    } else {
641 637
       $summary[] = $this->t('Undefined selection mode.');
642 638
     }
643 639
 
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
       }
147 147
     }
148 148
 
149
-    $id = Html::getUniqueId('field-' . $this->fieldDefinition->getName() . '-display-settings-wrapper');
149
+    $id = Html::getUniqueId('field-'.$this->fieldDefinition->getName().'-display-settings-wrapper');
150 150
     $element['field_widget_display'] = [
151 151
       '#title' => $this->t('Entity display plugin'),
152 152
       '#type' => 'select',
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
       '#type' => 'fieldset',
190 190
       '#title' => $this->t('Entity display plugin configuration'),
191 191
       '#tree' => TRUE,
192
-      '#prefix' => '<div id="' . $id . '">',
192
+      '#prefix' => '<div id="'.$id.'">',
193 193
       '#suffix' => '</div>',
194 194
     ];
195 195
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
    *   A key for form state storage.
273 273
    */
274 274
   protected function getFormStateKey(FieldItemListInterface $items) {
275
-    return $items->getEntity()->uuid() . ':' . $items->getFieldDefinition()->getName();
275
+    return $items->getEntity()->uuid().':'.$items->getFieldDefinition()->getName();
276 276
   }
277 277
 
278 278
   /**
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 
285 285
     // Get correct ordered list of entity IDs.
286 286
     $ids = array_map(
287
-      function (EntityInterface $entity) {
287
+      function(EntityInterface $entity) {
288 288
         return $entity->id();
289 289
       },
290 290
       $entities
@@ -298,8 +298,8 @@  discard block
 block discarded – undo
298 298
     // might result in unpredictable results.
299 299
     $form_state->set(['entity_browser_widget', $this->getFormStateKey($items)], $ids);
300 300
 
301
-    $hidden_id = Html::getUniqueId('edit-' . $this->fieldDefinition->getName() . '-target-id');
302
-    $details_id = Html::getUniqueId('edit-' . $this->fieldDefinition->getName());
301
+    $hidden_id = Html::getUniqueId('edit-'.$this->fieldDefinition->getName().'-target-id');
302
+    $details_id = Html::getUniqueId('edit-'.$this->fieldDefinition->getName());
303 303
 
304 304
     $element += [
305 305
       '#id' => $details_id,
@@ -314,8 +314,8 @@  discard block
 block discarded – undo
314 314
         // We need to repeat ID here as it is otherwise skipped when rendering.
315 315
         '#attributes' => ['id' => $hidden_id],
316 316
         '#default_value' => implode(' ', array_map(
317
-            function (EntityInterface $item) {
318
-              return $item->getEntityTypeId() . ':' . $item->id();
317
+            function(EntityInterface $item) {
318
+              return $item->getEntityTypeId().':'.$item->id();
319 319
             },
320 320
             $entities
321 321
         )),
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
    */
365 365
   public static function processEntityBrowser(&$element, FormStateInterface $form_state, &$complete_form) {
366 366
     $uuid = key($element['#attached']['drupalSettings']['entity_browser']);
367
-    $element['#attached']['drupalSettings']['entity_browser'][$uuid]['selector'] = '#' . $element['#custom_hidden_id'];
367
+    $element['#attached']['drupalSettings']['entity_browser'][$uuid]['selector'] = '#'.$element['#custom_hidden_id'];
368 368
     return $element;
369 369
   }
370 370
 
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
       '#theme_wrappers' => ['container'],
470 470
       '#attributes' => ['class' => ['entities-list']],
471 471
       'items' => array_map(
472
-        function (ContentEntityInterface $entity, $row_id) use ($field_widget_display, $details_id, $field_parents) {
472
+        function(ContentEntityInterface $entity, $row_id) use ($field_widget_display, $details_id, $field_parents) {
473 473
           $display = $field_widget_display->view($entity);
474 474
           if (is_string($display)) {
475 475
             $display = ['#markup' => $display];
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
             '#theme_wrappers' => ['container'],
479 479
             '#attributes' => [
480 480
               'class' => ['item-container', Html::getClass($field_widget_display->getPluginId())],
481
-              'data-entity-id' => $entity->getEntityTypeId() . ':' . $entity->id(),
481
+              'data-entity-id' => $entity->getEntityTypeId().':'.$entity->id(),
482 482
               'data-row-id' => $row_id,
483 483
             ],
484 484
             'display' => $display,
@@ -490,10 +490,10 @@  discard block
 block discarded – undo
490 490
                 'wrapper' => $details_id,
491 491
               ],
492 492
               '#submit' => [[get_class($this), 'removeItemSubmit']],
493
-              '#name' => $this->fieldDefinition->getName() . '_remove_' . $entity->id() . '_' . $row_id . '_' . md5(json_encode($field_parents)),
493
+              '#name' => $this->fieldDefinition->getName().'_remove_'.$entity->id().'_'.$row_id.'_'.md5(json_encode($field_parents)),
494 494
               '#limit_validation_errors' => [array_merge($field_parents, [$this->fieldDefinition->getName()])],
495 495
               '#attributes' => [
496
-                'data-entity-id' => $entity->getEntityTypeId() . ':' . $entity->id(),
496
+                'data-entity-id' => $entity->getEntityTypeId().':'.$entity->id(),
497 497
                 'data-row-id' => $row_id,
498 498
               ],
499 499
               '#access' => (bool) $this->getSetting('field_widget_remove'),
@@ -631,7 +631,7 @@  discard block
 block discarded – undo
631 631
       }
632 632
       // Submit was triggered by one of the "Remove" buttons. We need to walk
633 633
       // few levels up to read value of "target_id" element.
634
-      elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], $this->fieldDefinition->getName() . '_remove_') === 0) {
634
+      elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], $this->fieldDefinition->getName().'_remove_') === 0) {
635 635
         $parents = array_merge(array_slice($trigger['#parents'], 0, -static::$deleteDepth), ['target_id']);
636 636
       }
637 637
 
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
     // If an entity browser is being used in this widget, add it as a config
689 689
     // dependency.
690 690
     if ($browser_name = $this->getSetting('entity_browser')) {
691
-      $dependencies['config'][] = 'entity_browser.browser.' . $browser_name;
691
+      $dependencies['config'][] = 'entity_browser.browser.'.$browser_name;
692 692
     }
693 693
 
694 694
     return $dependencies;
Please login to merge, or discard this patch.
src/Plugin/Field/FieldWidget/FileBrowserWidget.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -175,8 +175,7 @@  discard block
 block discarded – undo
175 175
     // their styles in code.
176 176
     elseif ($this->fieldDefinition->getType() == 'image' && $image_style = ImageStyle::load($image_style_setting)) {
177 177
       $preview_image_style = $this->t('Preview image style: @style', ['@style' => $image_style->label()]);
178
-    }
179
-    else {
178
+    } else {
180 179
       $preview_image_style = $this->t('No preview image');
181 180
     }
182 181
     array_unshift($summary, $preview_image_style);
@@ -260,8 +259,7 @@  discard block
 block discarded – undo
260 259
           if ($field_type == 'file') {
261 260
             $description = $item->description;
262 261
             $display_field = $item->display;
263
-          }
264
-          elseif ($field_type == 'image') {
262
+          } elseif ($field_type == 'image') {
265 263
             $alt = $item->alt;
266 264
             $title = $item->title;
267 265
             $width = $item->width;
@@ -455,8 +453,7 @@  discard block
 block discarded – undo
455 453
       $extensions = isset($settings['file_extensions']) ? $settings['file_extensions'] : implode(' ', $supported_extensions);
456 454
       $extensions = array_intersect(explode(' ', $extensions), $supported_extensions);
457 455
       $validators['file_validate_extensions'] = [implode(' ', $extensions)];
458
-    }
459
-    elseif (!empty($settings['file_extensions'])) {
456
+    } elseif (!empty($settings['file_extensions'])) {
460 457
       $validators['file_validate_extensions'] = [$settings['file_extensions']];
461 458
     }
462 459
 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
     $delta = 0;
218 218
 
219
-    $order_class = $field_machine_name . '-delta-order';
219
+    $order_class = $field_machine_name.'-delta-order';
220 220
 
221 221
     $current = [
222 222
       '#type' => 'table',
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
       $current[$entity_id] = [
284 284
         '#attributes' => [
285 285
           'class' => ['draggable'],
286
-          'data-entity-id' => $entity->getEntityTypeId() . ':' . $entity_id,
286
+          'data-entity-id' => $entity->getEntityTypeId().':'.$entity_id,
287 287
           'data-row-id' => $delta,
288 288
         ],
289 289
       ];
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
             'options' => ['query' => ['details_id' => $details_id]],
356 356
           ],
357 357
           '#attributes' => [
358
-            'data-entity-id' => $entity->getEntityTypeId() . ':' . $entity->id(),
358
+            'data-entity-id' => $entity->getEntityTypeId().':'.$entity->id(),
359 359
             'data-row-id' => $delta,
360 360
           ],
361 361
           '#access' => $can_edit,
@@ -368,10 +368,10 @@  discard block
 block discarded – undo
368 368
             'wrapper' => $details_id,
369 369
           ],
370 370
           '#submit' => [[get_class($this), 'removeItemSubmit']],
371
-          '#name' => $field_machine_name . '_remove_' . $entity_id . '_' . md5(json_encode($field_parents)),
371
+          '#name' => $field_machine_name.'_remove_'.$entity_id.'_'.md5(json_encode($field_parents)),
372 372
           '#limit_validation_errors' => [array_merge($field_parents, [$field_machine_name, 'target_id'])],
373 373
           '#attributes' => [
374
-            'data-entity-id' => $entity->getEntityTypeId() . ':' . $entity->id(),
374
+            'data-entity-id' => $entity->getEntityTypeId().':'.$entity->id(),
375 375
             'data-row-id' => $delta,
376 376
           ],
377 377
           '#access' => (bool) $widget_settings['field_widget_remove'],
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
     }
430 430
 
431 431
     // Return ourself as the structure doesn't match the default.
432
-    usort($return, function ($a, $b) {
432
+    usort($return, function($a, $b) {
433 433
       return SortArray::sortByKeyInt($a, $b, '_weight');
434 434
     });
435 435
 
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
     $data['validators']['file'] = ['validators' => $this->getFileValidators()];
490 490
     // Provide context for widgets to enhance their configuration. Currently
491 491
     // we only know that "upload_location" is used.
492
-    $data['widget_context']['upload_location'] = $settings['uri_scheme'] . '://' . $settings['file_directory'];
492
+    $data['widget_context']['upload_location'] = $settings['uri_scheme'].'://'.$settings['file_directory'];
493 493
     return $data;
494 494
   }
495 495
 
Please login to merge, or discard this patch.
src/Form/GeneralInfoConfig.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
     $entity_browser = $cached_values['entity_browser'];
91 91
 
92 92
     if (empty($entity_browser->id())) {
93
-      $help_text = '<div class="clearfix eb-help-text"><h2>' . $this->t('Entity Browser creation instructions') . '</h2>';
94
-      $help_text .= '<p>' . $this->t('This is a multi-step form. In this first step you need to define the main characteristics of the Entity Browser (in other words, which plugins will be used for each functionality). In the following steps of this wizard, each individual plugin can be configured, when necessary.') . '</p>';
95
-      $help_text .= '<p>' . $this->t('You can find more detailed information about creating and configuring Entity Browsers at the <a href="@guide_href" target="_blank">official documentation</a>.', ['@guide_href' => 'https://drupal-media.gitbooks.io/drupal8-guide/content/modules/entity_browser/intro.html']) . '</p>';
93
+      $help_text = '<div class="clearfix eb-help-text"><h2>'.$this->t('Entity Browser creation instructions').'</h2>';
94
+      $help_text .= '<p>'.$this->t('This is a multi-step form. In this first step you need to define the main characteristics of the Entity Browser (in other words, which plugins will be used for each functionality). In the following steps of this wizard, each individual plugin can be configured, when necessary.').'</p>';
95
+      $help_text .= '<p>'.$this->t('You can find more detailed information about creating and configuring Entity Browsers at the <a href="@guide_href" target="_blank">official documentation</a>.', ['@guide_href' => 'https://drupal-media.gitbooks.io/drupal8-guide/content/modules/entity_browser/intro.html']).'</p>';
96 96
       $help_text .= '</div>';
97 97
       $form['help_text'] = [
98 98
         '#markup' => $help_text,
@@ -100,10 +100,10 @@  discard block
 block discarded – undo
100 100
     }
101 101
 
102 102
     $displays = [];
103
-    $display_description = $this->t('Choose here how the browser(s) should be presented to the end user. The available plugins are:') . '<ul>';
103
+    $display_description = $this->t('Choose here how the browser(s) should be presented to the end user. The available plugins are:').'<ul>';
104 104
     foreach ($this->displayManager->getDefinitions() as $plugin_id => $plugin_definition) {
105 105
       $displays[$plugin_id] = $plugin_definition['label'];
106
-      $display_description .= '<li><b>' . $plugin_definition['label'] . ':</b> ' . $plugin_definition['description'] . '</li>';
106
+      $display_description .= '<li><b>'.$plugin_definition['label'].':</b> '.$plugin_definition['description'].'</li>';
107 107
     }
108 108
     $display_description .= '</ul>';
109 109
     $form['display'] = [
@@ -116,10 +116,10 @@  discard block
 block discarded – undo
116 116
     ];
117 117
 
118 118
     $widget_selectors = [];
119
-    $widget_description = $this->t('In the last step of the entity browser configuration you can decide how the widgets will be available to the editor. The available plugins are:') . '<ul>';
119
+    $widget_description = $this->t('In the last step of the entity browser configuration you can decide how the widgets will be available to the editor. The available plugins are:').'<ul>';
120 120
     foreach ($this->widgetSelectorManager->getDefinitions() as $plugin_id => $plugin_definition) {
121 121
       $widget_selectors[$plugin_id] = $plugin_definition['label'];
122
-      $widget_description .= '<li><b>' . $plugin_definition['label'] . ':</b> ' . $plugin_definition['description'] . '</li>';
122
+      $widget_description .= '<li><b>'.$plugin_definition['label'].':</b> '.$plugin_definition['description'].'</li>';
123 123
     }
124 124
     $widget_description .= '</ul>';
125 125
     $form['widget_selector'] = [
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
     ];
133 133
 
134 134
     $selection_display = [];
135
-    $selection_description = $this->t('You can optionally allow a "work-in-progress selection zone" to be available to the editor, while still navigating, browsing and selecting the entities. The available plugins are:') . '<ul>';
135
+    $selection_description = $this->t('You can optionally allow a "work-in-progress selection zone" to be available to the editor, while still navigating, browsing and selecting the entities. The available plugins are:').'<ul>';
136 136
     foreach ($this->selectionDisplayManager->getDefinitions() as $plugin_id => $plugin_definition) {
137 137
       $selection_display[$plugin_id] = $plugin_definition['label'];
138
-      $selection_description .= '<li><b>' . $plugin_definition['label'] . ':</b> ' . $plugin_definition['description'] . '</li>';
138
+      $selection_description .= '<li><b>'.$plugin_definition['label'].':</b> '.$plugin_definition['description'].'</li>';
139 139
     }
140 140
     $selection_description .= '</ul>';
141 141
     $form['selection_display'] = [
Please login to merge, or discard this patch.
src/Form/WidgetsConfig.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     $entity_browser = $form_state->getTemporaryValue('wizard')['entity_browser'];
54 54
 
55 55
     $widgets = [];
56
-    $description = $this->t('The available plugins are:') . '<ul>';
56
+    $description = $this->t('The available plugins are:').'<ul>';
57 57
     foreach ($this->widgetManager->getDefinitions() as $plugin_id => $plugin_definition) {
58 58
       $widgets[$plugin_id] = $plugin_definition['label'];
59
-      $description .= '<li><b>' . $plugin_definition['label'] . ':</b> ' . $plugin_definition['description'] . '</li>';
59
+      $description .= '<li><b>'.$plugin_definition['label'].':</b> '.$plugin_definition['description'].'</li>';
60 60
     }
61 61
     $description .= '</ul>';
62 62
     $default_widgets = [];
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     $form['widget'] = [
68 68
       '#type' => 'select',
69 69
       '#title' => $this->t('Add widget plugin'),
70
-      '#options' => ['_none_' => '- ' . $this->t('Select a widget to add it') . ' -'] + $widgets,
70
+      '#options' => ['_none_' => '- '.$this->t('Select a widget to add it').' -'] + $widgets,
71 71
       '#description' => $description,
72 72
       '#ajax' => [
73 73
         'callback' => [get_class($this), 'tableUpdatedAjaxCallback'],
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
       $row['remove'] = [
122 122
         '#type' => 'submit',
123 123
         '#value' => $this->t('Delete'),
124
-        '#name' => 'remove' . $uuid,
124
+        '#name' => 'remove'.$uuid,
125 125
         '#ajax' => [
126 126
           'callback' => [get_class($this), 'tableUpdatedAjaxCallback'],
127 127
           'wrapper' => 'widgets',
Please login to merge, or discard this patch.