You are here

function social_post_photo_form_post_form_alter in Open Social 8.7

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.8 modules/social_features/social_post/modules/social_post_photo/social_post_photo.module \social_post_photo_form_post_form_alter()
  9. 10.3.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.module \social_post_photo_form_post_form_alter()
  10. 10.0.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.module \social_post_photo_form_post_form_alter()
  11. 10.1.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.module \social_post_photo_form_post_form_alter()
  12. 10.2.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';
}