You are here

function social_mentions_form_comment_form_alter in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  2. 8 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  3. 8.2 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  4. 8.3 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  5. 8.4 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  6. 8.5 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  7. 8.6 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  8. 8.7 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  9. 8.8 modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  10. 10.3.x modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  11. 10.1.x modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()
  12. 10.2.x modules/social_features/social_mentions/social_mentions.module \social_mentions_form_comment_form_alter()

Implements hook_form_FORM_ID_alter().

File

modules/social_features/social_mentions/social_mentions.module, line 153
Contains social_mentions.module.

Code

function social_mentions_form_comment_form_alter(&$form, FormStateInterface $form_state, $form_id) {
  if (!$form_state
    ->getFormObject()
    ->getEntity()
    ->hasParentComment()) {
    $form['pid'] = [
      '#type' => 'hidden',
      '#attributes' => [
        'class' => [
          'parent-comment',
        ],
      ],
    ];
  }
}