function _authcache_contact in Authenticated User Page Caching (Authcache) 6
Same name and namespace in other branches
- 7 ajax/authcache.php \_authcache_contact()
Return default form values for site contact form
See also
File
- ajax/
authcache.php, line 203 - Authcache Ajax Callback (authcache.php)
Code
function _authcache_contact($vars) {
global $user;
return array(
'name' => $user->name,
'mail' => $user->mail,
);
}