function authcache_p13n_resource_preprocessor in Authenticated User Page Caching (Authcache) 7.2
Invoke hook_authcache_p13n_resource_preprocessors().
Related topics
1 call to authcache_p13n_resource_preprocessor()
- authcache_p13n_request_resources in modules/
authcache_p13n/ authcache_p13n.module - Generate a list of requests resources.
File
- modules/
authcache_p13n/ authcache_p13n.module, line 806 - Provides methods for serving personalized content fragments.
Code
function authcache_p13n_resource_preprocessor() {
$preprocs = module_invoke_all('authcache_p13n_resource_preprocessors');
drupal_alter('authcache_p13n_resource_preprocessors', $preprocs);
$preproc = new AuthcacheP13nObjectResourcePreprocessor($preprocs);
return $preproc;
}