Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / views_query_substitutions.twig
1 /**
2  * Implements hook_views_query_substitutions().
3  */
4 function {{ machine_name }}_views_query_substitutions(ViewExecutable $view) {
5   // Example from views_views_query_substitutions().
6   return [
7     '***CURRENT_VERSION***' => \Drupal::VERSION,
8     '***CURRENT_TIME***' => REQUEST_TIME,
9     '***LANGUAGE_language_content***' => \Drupal::languageManager()->getCurrentLanguage(LanguageInterface::TYPE_CONTENT)->getId(),
10     PluginBase::VIEWS_QUERY_LANGUAGE_SITE_DEFAULT => \Drupal::languageManager()->getDefaultLanguage()->getId(),
11   ];
12 }