function user_views_query_substitutions

Allow replacement of current userid so we can cache these queries.

File

modules/user.views.inc, line 626

Code

function user_views_query_substitutions($view) {
  global $user;
  return array(
    '***CURRENT_USER***' => intval($user->uid),
  );
}