You are here

function authcache_p13n_authcache_p13n_resource_preprocessors in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_p13n_resource_preprocessors().

Related topics

File

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

Code

function authcache_p13n_authcache_p13n_resource_preprocessors() {
  return array(
    'partial' => '_authcache_p13n_resource_preproc_partial',
    'setting' => '_authcache_p13n_resource_preproc_setting',
  ) + AuthcacheP13nObjectResourcePreprocessor::defaultPreprocessors();
}