You are here

function flat_comments_save in Flatcomments 8

1 string reference to 'flat_comments_save'
flat_comments_form_field_config_edit_form_alter in ./flat_comments.module
Implements hook_form_alter().

File

./flat_comments.module, line 58
Contains flat_comments.module.

Code

function flat_comments_save(array &$form, FormStateInterface $form_state) {

  /** @var Drupal\field\Entity\FieldConfig $field */
  $field = $form_state
    ->getFormObject()
    ->getEntity();
  $values = $form_state
    ->getValues();
  $field
    ->setThirdPartySetting('flat_comments', 'remove_reply_link', $values['settings']['remove_reply_link']);
  $field
    ->save();
}