You are here

public function AuthcacheUserSetting::get in Authenticated User Page Caching (Authcache) 7.2

Return profile data of currently logged in user.

Overrides AuthcacheP13nSettingInterface::get

File

modules/authcache_user/includes/AuthcacheUserSetting.inc, line 23
Defines setting handler for profile data of currently logged in user.

Class

AuthcacheUserSetting
Setting handler for profile data of currently logged in user.

Code

public function get($params, $context) {
  $data = $this
    ->getUserData();
  return $this
    ->escapeUserData($data);
}