Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / ajax_render_alter.twig
1 /**
2  * Implements hook_ajax_render_alter().
3  */
4 function {{ machine_name }}_ajax_render_alter(array &$data) {
5   // Inject any new status messages into the content area.
6   $status_messages = ['#type' => 'status_messages'];
7   $command = new \Drupal\Core\Ajax\PrependCommand('#block-system-main .content', \Drupal::service('renderer')->renderRoot($status_messages));
8   $data[] = $command->render();
9 }