You are here

function authcache_p13n_setting_info in Authenticated User Page Caching (Authcache) 7.2

Return information about settings implemented by other modules.

Related topics

2 calls to authcache_p13n_setting_info()
AuthcacheP13nTestMarkup::testInfoFunctions in modules/authcache_p13n/tests/authcache_p13n.markup.test
Cover authcache_p13n_X_info().
authcache_p13n_authcache_p13n_request in modules/authcache_p13n/authcache_p13n.module
Implements hook_authcache_p13n_request().

File

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

Code

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