Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / field_ui / src / Form / FieldConfigEditForm.php
index 2895479b3667c4a36c5b3067863411b1189911af..af6de89f6b41951b104b075691849109e6d6b05b 100644 (file)
@@ -12,6 +12,8 @@ use Drupal\field_ui\FieldUI;
 
 /**
  * Provides a form for the field settings form.
+ *
+ * @internal
  */
 class FieldConfigEditForm extends EntityForm {
 
@@ -75,7 +77,7 @@ class FieldConfigEditForm extends EntityForm {
     $ids = (object) [
       'entity_type' => $this->entity->getTargetEntityTypeId(),
       'bundle' => $this->entity->getTargetBundle(),
-      'entity_id' => NULL
+      'entity_id' => NULL,
     ];
     $form['#entity'] = _field_create_entity_from_ids($ids);
     $items = $form['#entity']->get($this->entity->getName());
@@ -175,7 +177,7 @@ class FieldConfigEditForm extends EntityForm {
   public function save(array $form, FormStateInterface $form_state) {
     $this->entity->save();
 
-    drupal_set_message($this->t('Saved %label configuration.', ['%label' => $this->entity->getLabel()]));
+    $this->messenger()->addStatus($this->t('Saved %label configuration.', ['%label' => $this->entity->getLabel()]));
 
     $request = $this->getRequest();
     if (($destinations = $request->query->get('destinations')) && $next_destination = FieldUI::getNextDestination($destinations)) {