You are here

function social_post_photo_form_post_form_alter in Open Social 10.2.x

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

Implements hook_form_FORM_ID_alter().

File

modules/social_features/social_post/modules/social_post_photo/social_post_photo.module, line 13
The Social post photo module.

Code

function social_post_photo_form_post_form_alter(&$form, FormStateInterface $form_state, $form_id) {

  // Don't show a title nor a description.
  $form['field_post_image']['widget'][0]['#title'] = '';
  $form['field_post_image']['widget'][0]['#description'] = '';

  // Add JS to change the placeholder. @TODO: Improve this.
  $form['#attached']['library'][] = 'social_post_photo/widget';
  if ($form_state
    ->hasValue([
    'field_post_image',
    0,
    'fids',
    0,
  ])) {

    /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $display */
    $display = $form_state
      ->get('form_display');
    $field = $display
      ->getComponent('field_post');
    $form['field_post']['widget'][0]['#placeholder'] = $field['settings']['placeholder'];
  }
}