function views_views_query_substitutions

Implements hook_views_query_substitutions().

Substitute current time; this works with cached queries.

File

drupal/core/modules/views/views.views_execution.inc, line 16
Provides views runtime hooks for views.module.

Code

function views_views_query_substitutions(ViewExecutable $view) {
  return array(
    '***CURRENT_VERSION***' => VERSION,
    '***CURRENT_TIME***' => REQUEST_TIME,
    '***CURRENT_LANGUAGE***' => language(Language::TYPE_CONTENT)->langcode,
    '***DEFAULT_LANGUAGE***' => language_default()->langcode,
  );
}