You are here

function authcache_p13n_client_info in Authenticated User Page Caching (Authcache) 7.2

Return information about fragment clients.

See also

hook_authcache_p13n_client()

Related topics

8 calls to authcache_p13n_client_info()
AuthcacheP13nTestClient::testHookClientInfo in modules/authcache_p13n/tests/authcache_p13n.client.test
Cover authcache_p13n_client_info().
authcache_ajax_authcache_key_properties in modules/authcache_ajax/authcache_ajax.module
Implements hook_authcache_key_properties().
authcache_esi_authcache_key_properties in modules/authcache_esi/authcache_esi.module
Implements hook_authcache_key_properties().
authcache_p13n_authcache_debug_info in modules/authcache_p13n/authcache_p13n.module
Implements hook_authcache_debug_info().
authcache_p13n_client_get_preferred in modules/authcache_p13n/authcache_p13n.module
Return the preferred client for the given fragment/assembly/setting.

... See full list

File

modules/authcache_p13n/authcache_p13n.module, line 677
Provides methods for serving personalized content fragments.

Code

function authcache_p13n_client_info() {
  $info =& drupal_static(__FUNCTION__);
  if (!isset($info)) {
    $info = module_invoke_all('authcache_p13n_client');
    drupal_alter('authcache_p13n_client', $info);
  }
  return $info;
}