function authcache_p13n_fragment_info in Authenticated User Page Caching (Authcache) 7.2
Return information about fragments implemented by other modules.
Related topics
2 calls to authcache_p13n_fragment_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 74 - Provides methods for serving personalized content fragments.
Code
function authcache_p13n_fragment_info() {
$info =& drupal_static(__FUNCTION__);
if (!isset($info)) {
$info = module_invoke_all('authcache_p13n_fragment');
drupal_alter('authcache_p13n_fragment', $info);
}
return $info;
}