Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_form_display_alter.twig
1 /**
2  * Implements hook_entity_form_display_alter().
3  */
4 function {{ machine_name }}_entity_form_display_alter(\Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display, array $context) {
5   // Hide the 'user_picture' field from the register form.
6   if ($context['entity_type'] == 'user' && $context['form_mode'] == 'register') {
7     $form_display->setComponent('user_picture', [
8       'region' => 'hidden',
9     ]);
10   }
11 }