function views_views_query_substitutions

Substitute current time; this works with cached queries.

File

drupal/core/modules/views/views.module, line 1955
Primarily Drupal hooks and global API functions to manipulate views.

Code

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