function user_views_query_substitutions
Same name in other branches
- 6.x-3.x modules/user.views.inc \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),
);
}