Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / language_fallback_candidates_OPERATION_alter.twig
1 /**
2  * Implements hook_language_fallback_candidates_OPERATION_alter().
3  */
4 function {{ machine_name }}_language_fallback_candidates_OPERATION_alter(array &$candidates, array $context) {
5   // We know that the current OPERATION deals with entities so no need to check
6   // here.
7   if ($context['data']->getEntityTypeId() == 'node') {
8     $candidates = array_reverse($candidates);
9   }
10 }